次の関数を使用する
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 のアクセス許可があります。
この問題を解決するアイデアはありますか?