...scripting? I wrote this function and it doesn't work if the image is a png file.
function resizeImage($originalImage,$toWidth,$toHeight) {
list($width, $height) = getimagesize($originalImage);
$xscale=$width/$toWidth;
$yscale=$height/$toHeight;
if ($yscale>$xscale){
$new_width =...