diversen / image-auto-rotate
自动将图片旋转到正确的方向(从EXIF数据中获取)
v1.0.1
2016-06-13 09:38 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-09-20 07:47:42 UTC
README
自动将图片旋转到正确的方向
在以下链接中查看答案
http://stackoverflow.com/questions/7489742/php-read-exif-data-and-adjust-orientation
安装
composer require diversen/image-auto-rotate
用法
仅有一种方法
<?php use diversen\imageRotate; // The class works directly on an image $rotate = new imageRotate(); $rotate->fixOrientation($file['tmp_name']);