0

使用以下功能

function crea_thumb($name,$filename,$new_w,$new_h){
$src_img=imagecreatefromjpeg($name);

$old_x=imageSX($src_img);
$old_y=imageSY($src_img);
if ($old_x > $old_y) {
    $thumb_w=$new_w;
    $thumb_h=$old_y*($new_h/$old_x);
}
if ($old_x < $old_y) {
    $thumb_w=$old_x*($new_w/$old_y);
    $thumb_h=$new_h;
}
if ($old_x == $old_y) {
    $thumb_w=$new_w;
    $thumb_h=$new_h;
}

$dst_img=ImageCreateTrueColor($thumb_w,$thumb_h);
imagecopyresampled($dst_img,$src_img,0,0,0,0,$thumb_w,$thumb_h,$old_x,$old_y);

imagejpeg($dst_img, $filename);

imagedestroy($dst_img); 
imagedestroy($src_img); 
}

我没有收到缩略图。

对函数的调用类似于:

crea_thumb("/images/covers/big/44.jpg", "/images/covers/small/44.jpg", 400, 400);

注意

/images/covers/big/44.jpg

已上传且文件夹有 777 权限。

有没有人有解决这个问题的想法?

4

0 回答 0