- Timestamp:
- 01/05/09 22:34:13 (2 years ago)
- Files:
-
- fImage.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fImage.php
r457 r460 Hide Line Numbers 10 10 * @link http://flourishlib.com/fImage 11 11 * 12 * @version 1.0.0b5 12 * @version 1.0.0b6 13 * @changes 1.0.0b6 Fixed ::cropToRatio() and ::resize() to always return the object even if nothing is to be done [wb, 2009-01-05] 13 14 * @changes 1.0.0b5 Added check to see if exec() is disabled, which causes ImageMagick to not work [wb, 2009-01-03] 14 15 * @changes 1.0.0b4 Fixed ::saveChanges() to not delete the image if no changes have been made [wb, 2008-12-18] … … 542 543 // If nothing changed, don't even record the modification 543 544 if ($orig_width == $new_width && $orig_height == $new_height) { 544 return ;545 return $this; 545 546 } 546 547 … … 881 882 // If the size did not go down, don't even record the modification 882 883 if ($orig_width <= $new_width || $orig_height <= $new_height) { 883 return ;884 return $this; 884 885 } 885 886
