Try
<?php
$src_image = imagecreatefromjpeg($stored_image);
$new_thumb_width = 85;
$new_thumb_height = 64;
list($width, $height) = getimagesize($src);
$thumb_w = $new_thumb_width;
$thumb_h = $new_thumb_height;
$thumb = imagecreatetruecolor($thumb_w, $thumb_h);
imagecopyresampled($thumb, $src_image,0,0,0,0,$thumb_w, $thumb_h, $width, $height);
imagejpeg($thumb);
imagedestroy($src_image);
imagedestroy($thumb);
echo $thumb_w;
echo "<br/>";
echo $thumb_h;
?>