diversen/image-auto-rotate

Auto rotate image to correct position from exif

v1.0.1 2016-06-13 09:38 UTC

This package is auto-updated.

Last update: 2024-03-20 06:48:08 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']);