From dc363d950e8d3b3c05f4cd0062d9dd59cc74e37e Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 12 Mar 2023 22:43:08 -0400 Subject: feat: implement cpp functions to get and set exif data --- lib/exif_wrapper.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 lib/exif_wrapper.h (limited to 'lib/exif_wrapper.h') diff --git a/lib/exif_wrapper.h b/lib/exif_wrapper.h new file mode 100644 index 0000000..ec51406 --- /dev/null +++ b/lib/exif_wrapper.h @@ -0,0 +1,4 @@ +#include + +unsigned int getExifOrientation(uint8_t* imgBytes, unsigned int size); +void setExifOrientation(uint8_t* imgBytes, unsigned int size, unsigned int orientation); -- cgit v1.2.3