Esempio n. 1
0
 /**
  * Rotate image
  *
  * @param $direction
  *
  * @throws Exception
  */
 private function _rotate($direction)
 {
     $thumb = new PHPThumb\GD($this->_config['dir'] . $this->_newfilename);
     $thumb->rotateImage($direction);
     $thumb->save($this->_config['dir'] . $this->_newfilename);
     // If image has thumbnails
     if ($this->_thumbnails) {
         $this->_create_thumbs();
     }
 }
Esempio n. 2
0
<?php

/**
 * PhpThumb Library Example File
 *
 * This file contains example usage for the PHP Thumb Library
 *
 * PHP Version 5 with GD 2.0+
 * PhpThumb : PHP Thumb Library <http://phpthumb.gxdlabs.com>
 * Copyright (c) 2009, Ian Selby/Gen X Design
 *
 * Author(s): Ian Selby <*****@*****.**>
 *
 * Licensed under the MIT License
 * Redistributions of files must retain the above copyright notice.
 *
 * @author Ian Selby <*****@*****.**>
 * @copyright Copyright (c) 2009 Gen X Design
 * @link http://phpthumb.gxdlabs.com
 * @license http://www.opensource.org/licenses/mit-license.php The MIT License
 * @version 3.0
 * @package PhpThumb
 * @subpackage Examples
 * @filesource
 */
require_once '../vendor/autoload.php';
$thumb = new PHPThumb\GD(__DIR__ . '/../tests/resources/test.jpg');
$thumb->rotateImage('CW');
$thumb->show();
// or:
// $thumb->rotate('CCW');