Changeset 1989
- Timestamp:
- 02/07/2008 10:41:00 PM (11 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/drivers/Image/GD.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/drivers/Image/GD.php
r1988 r1989 213 213 214 214 // The maximum reduction is 10% greater than the final size 215 $max_reduction_width = round($properties['width'] 1.1);216 $max_reduction_height = round($properties['height'] 1.1);215 $max_reduction_width = round($properties['width'] * 1.1); 216 $max_reduction_height = round($properties['height'] * 1.1); 217 217 218 218 // Reduce the size using an O(2n) algorithm, until it reaches the maximum reduction
