0
我需要在成功上傳圖片文件後製作圖片的縮略圖。我寫了這個函數,但它似乎不起作用。希望任何人都能幫忙。由於無法使用php製作上傳圖片的縮略圖
function make_thumb($src, $thumbDest, $thumbWidth){
$sourceImage = imagecreatefromjpeg($src);
$theWidth = imagesx($sourceImage);
$theHeight = imagesy($sourceImage);
$thumbHeight = floor($theHeight * ($thumbWidth/$theWidth));
$tempImage = imagecreatetruecolor($thumbWidth, $thumbHeight);
imagecopyresized($tempImage, $sourceImage, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $theWidth, $theHeight);
imagejpeg($tempImage, $thumbDest);
imagedestroy($tempImage);
imagedestroy($sourceImage);
}
定義「不起作用」請 – haltabush 2012-03-28 20:25:30
它不會將所創建的縮略圖保存到給定的目標文件夾中,並且不顯示任何內容。 – Thavarith 2012-03-28 20:46:42
您是否啓用了error_reporting指令?同時檢查你的錯誤日誌。 – haltabush 2012-03-28 20:52:25