diversen / image-auto-rotate
Auto rotate image to correct position from exif
v1.0.1
2016-06-13 09:38 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2026-02-20 10:52:37 UTC
README
Auto rotate images to correct orientation
See answers on:
http://stackoverflow.com/questions/7489742/php-read-exif-data-and-adjust-orientation
Install
composer require diversen/image-auto-rotate
Usage
Only one method:
<?php use diversen\imageRotate; // The class works directly on an image $rotate = new imageRotate(); $rotate->fixOrientation($file['tmp_name']);