使用此逻辑调整和打印图像的大小:
$image_path="path/to/image.extension";
$image_path=imagecreatefromjpeg($image_path);
$width=imagesx($image_path);
$height=imagesy($image_path);
$new_image=imagecreatetruecolor($w, $h);
imagecopyresampled($new_image,$image_path,0,0,0,0,$w,$h,$width,$height);
header('Content-Type: image/jpeg');
imagejpeg($new_image,100);
imagedestroy($new_image);
但我得到图像丢失图标作为输出。我做错了什么?我尝试打印变量$width
并$height
打印源图像的尺寸。所以路径是正确的。
可能是什么错误?