mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-10-09 11:42:48 +02:00
Fix EXIF fetching
This commit is contained in:
3
vips.h
3
vips.h
@@ -109,10 +109,9 @@ vips_get_exif_orientation(VipsImage *image) {
|
||||
|
||||
if (
|
||||
vips_image_get_typeof(image, EXIF_ORIENTATION) != 0 &&
|
||||
!vips_image_get_string(image, EXIF_ORIENTATION, &orientation)
|
||||
vips_image_get_string(image, EXIF_ORIENTATION, &orientation) == 0
|
||||
) return atoi(&orientation[0]);
|
||||
|
||||
vips_error("vips_get_exif_orientation", "Can't get EXIF orientation");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user