Changeset 22716
- Timestamp:
- May 17, 2013, 1:13:29 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/rotateImage/functions.inc.php
r16981 r22716 47 47 48 48 if (isset($conf['rotate_image_jpegtran']) and $conf['rotate_image_jpegtran']) { 49 $angle = ($angle + 180) % 360;49 $angle = 360 - $angle; 50 50 $command = 'jpegtran -copy all -rotate '.$angle.' -outfile '.$row['path'].' '.$row['path']; 51 51 exec($command);
Note: See TracChangeset
for help on using the changeset viewer.