PHP图像调整大小不起作用

时间:2018-02-15 15:51:28

标签: php jpeg image-resizing

我试图从JPG图像创建缩略图,但我无法正确输出已调整大小的图像("包含错误")。

这是我的代码,我无法弄清楚错误:

<?php   
header('Content-Type: image/jpeg');

$photos = glob($_GET['a'] . '/*.*');
$img = imagecreatefromjpeg($photos[array_rand($photos)]);

list($width, $height) = getimagesize($img);
if($width > $height) {
    $newWidth = 250;
    $newHeight = 250*$height/$width;
}
else {
    $newHeight = 250;
    $newWidth = 250*$width/$height;
}

$tmp = imagecreatetruecolor($newWidth, $newHeight);
imagecopyresampled($tmp, $img, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);

// Output the image
imagejpeg($tmp);
?>

1 个答案:

答案 0 :(得分:1)

函数getimagesize()需要文件名,而不是图像资源。它发出警告,这就是图像无效的原因,因为在图像二进制文件之前有一个字符串。

$photos = glob($_GET['a'] . '/*.*');
$filename = $photos[array_rand($photos)] ;
$img = imagecreatefromjpeg($filename);
list($width, $height) = getimagesize($filename);

或使用imagesx()imagesy()使用$img获取图片大小。

$photos = glob($_GET['a'] . '/*.*');
$img = imagecreatefromjpeg($photos[array_rand($photos)]);
$width = imagesx($img);
$height = imagesy($img);