rdavaillaud/image-orientation-fixer

一个PHP类,通过EXIF数据修复图片方向。

1.0.0 2018-03-22 09:33 UTC

This package is not auto-updated.

Last update: 2024-09-21 01:27:21 UTC


README

此存储库包含一个PHP类,通过使用exif_read_data方法,根据EXIF数据修复图片方向。

Latest Stable Version Total Downloads Latest Unstable Version License Build Status

使用方法

$iof = new ImageOrientationFixer();
$iof->fix('foo.jpg');

或从图片创建新文件。

$iof = new ImageOrientationFixer();
$iof->fix('foo.jpg', 'destination.jpg');

致谢

感谢jellybellydev提供的初始库,感谢recurser提供的图片示例