exif.h (470B)
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved. 2 // 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 #ifndef LIB_EXTRAS_EXIF_H_ 7 #define LIB_EXTRAS_EXIF_H_ 8 9 #include <stdint.h> 10 11 #include <vector> 12 13 namespace jxl { 14 15 // Sets the Exif orientation to the identity, to avoid repeated orientation 16 void ResetExifOrientation(std::vector<uint8_t>& exif); 17 18 } // namespace jxl 19 20 #endif // LIB_EXTRAS_EXIF_H_