diff options
author | dan <[email protected]> | 2023-03-13 16:30:13 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-03-13 16:30:13 -0400 |
commit | 889c58413b613d234e880007966fc38b262d77e2 (patch) | |
tree | 29be552479d4c9f036aac9a02326356e0d1d0467 /lib/exif_wrapper.h | |
parent | 5f1f3fa55e998cd6021af7614275c3a1afb8b501 (diff) | |
download | 54-889c58413b613d234e880007966fc38b262d77e2.tar.gz 54-889c58413b613d234e880007966fc38b262d77e2.tar.bz2 54-889c58413b613d234e880007966fc38b262d77e2.zip |
partial-fix: images not corrupted (but still not displaying with correct orientation)
Diffstat (limited to 'lib/exif_wrapper.h')
-rw-r--r-- | lib/exif_wrapper.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/exif_wrapper.h b/lib/exif_wrapper.h index ec51406..ab649c8 100644 --- a/lib/exif_wrapper.h +++ b/lib/exif_wrapper.h @@ -1,4 +1,5 @@ #include <stdint.h> unsigned int getExifOrientation(uint8_t* imgBytes, unsigned int size); -void setExifOrientation(uint8_t* imgBytes, unsigned int size, unsigned int orientation); +//void setExifOrientation(uint8_t* imgBytes, unsigned int size, unsigned int orientation); +void setExifOrientation(char* fileName, unsigned int orientation); |