rotateImage() public method

Rotates image either 90 degrees clockwise or counter-clockwise
public rotateImage ( string $direction = 'CW' )
$direction string
Exemplo n.º 1
0
 public function rotate($value)
 {
     if (ctype_digit($value)) {
         return parent::rotateImageNDegrees($value);
     } else {
         return parent::rotateImage($value);
     }
 }