rdavaillaud / image-orientation-fixer
一个PHP类,通过EXIF数据修复图片方向。
1.0.0
2018-03-22 09:33 UTC
Requires
- php: >=5.4.0
- ext-gd: *
Requires (Dev)
- phpunit/phpunit: @stable
This package is not auto-updated.
Last update: 2024-09-21 01:27:21 UTC
README
此存储库包含一个PHP类,通过使用exif_read_data方法,根据EXIF数据修复图片方向。
使用方法
$iof = new ImageOrientationFixer(); $iof->fix('foo.jpg');
或从图片创建新文件。
$iof = new ImageOrientationFixer(); $iof->fix('foo.jpg', 'destination.jpg');
致谢
感谢jellybellydev提供的初始库,感谢recurser提供的图片示例。