Rahul
Rahul
> ``` > exif > ``` Thanks for quick response, any way to get all exif data at once in human readable format? How to get image orientation from exif?
I have tried same sample code as above it throws an exception ``` [Jcupitt\Vips\Exception, 0] vips_image_get: field "exif-ifd2-SensingMethod" not found ```
> You can see all fields with: > > ``` > $ vipsheader -a thing.jpg > ``` This does not give exif data in human readable format, any way to...
Also I tried to get orientation, but no success! `echo "orientation : ". $image->get("orientation"); ` ``` [Jcupitt\Vips\Exception, 0] vips_image_get: field "orientation" not found ``` I am using image having orientation...
> Perhaps your libvips is missing EXIF support? You'll need `libexif-dev` at compile time. But, `$data = $image->get("exif-data");` is giving response in binary format, is it possible to get that...
It is something like, can you please help me? 
From : https://github.com/libvips/libvips/releases
Hi Recompiled it , now it is working. Getting image information "orientation" doesn't throws an exception and also auto rotation is working. Thanks
That issue is solved!, Just I want to know one more thing is How to "Get all exif data at once in human readable format" using PHP Library
> Did you try using the master branch 6.0 version? Not yet, @williamdes Should I try with that version even before releasing TAG?