rdavaillaud / image-orientation-fixer
Php class that Fix image orientation by exif data.
Installs: 14 110
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.0
- ext-gd: *
Requires (Dev)
- phpunit/phpunit: @stable
This package is not auto-updated.
Last update: 2025-03-22 03:52:24 UTC
README
This repository contains a php class that fix images orientation by exif data with the method exif_read_data
How to use
$iof = new ImageOrientationFixer(); $iof->fix('foo.jpg');
or to create a new file from the image.
$iof = new ImageOrientationFixer(); $iof->fix('foo.jpg', 'destination.jpg');
Credits
Thanks to jellybellydev for the initial library Thanks to recurser for the image example