我正在使用 PHP 生成缩略图。问题是我设置了缩略图需要的宽度和高度,而且图像经常被拉伸。
我想要的是图像保持相同的比例,并且在高图像的左右两侧或宽图像的顶部和底部只有黑色填充物(或任何颜色)。
这是我目前正在使用的代码:(为了便于阅读,稍微简化了一点)
$temp_image_file = imagecreatefromjpeg("http://www.example.com/image.jpg");
list($width,$height) = getimagesize("http://www.example.com/image.jpg");
$image_file = imagecreatetruecolor(166,103);
imagecopyresampled($image_file,$temp_image_file,0,0,0,0,166,103,$width,$height);
imagejpeg($image_file,"thumbnails/thumbnail.jpg",50);
imagedestroy($temp_image_file);
imagedestroy($image_file);