| 1 |
<?php |
<?php |
| 2 |
// $Id: image_resize_filter.module,v 1.1 2008/11/20 21:21:08 quicksketch Exp $ |
// $Id: image_resize_filter.module,v 1.2 2009/02/01 03:22:54 quicksketch Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file image_resize_fitler.module |
* @file image_resize_fitler.module |
| 193 |
$ratio = $actual_height/$actual_width; |
$ratio = $actual_height/$actual_width; |
| 194 |
$height = round($ratio * $width); |
$height = round($ratio * $width); |
| 195 |
} |
} |
| 196 |
else { |
elseif (!$width) { |
| 197 |
$ratio = $actual_width/$actual_height; |
$ratio = $actual_width/$actual_height; |
| 198 |
$width = round($ratio * $height); |
$width = round($ratio * $height); |
| 199 |
} |
} |