为了账号安全,请及时绑定邮箱和手机立即绑定

缩略图如何不变形

举例,如果原图是500x300, 缩略图是100x100, 如何让缩略图不变形,显示的是等比缩放后的局部;

正在回答

1 回答


$src = "1.jpg";
$info = getimagesize($src);
$type = image_type_to_extension($info[2],false);
$fun = "imagecreatefrom{$type}";
$image = $fun($src);

$target = imagecreatetruecolor(300,300);
imagecopy($target,$image,0,0,0,0,300,300);

$image_thumb = imagecreatetruecolor(100,100);
imagecopyresampled($image_thumb,$image,0,0,0,0,100,100,$info[0],$info[1]);
imagedestroy($image);
$image = $image_thumb;

header("Content-type: image/jpeg");
$funs = "image{$type}";
$funs($image_thumb);

0 回复 有任何疑惑可以回复我~
#1

尼古拉斯邓 提问者

这个方法不行
2016-03-12 回复 有任何疑惑可以回复我~
#2

hei_hu 回复 尼古拉斯邓 提问者

我是切了再压缩.
2016-03-13 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

缩略图如何不变形

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信