0

我已经实现了一些代码,允许我将图像重新采样为不同的大小,尽管目前它似乎只适用于 JPEG。我想我必须添加imagepng($image_p, null, 100);类型的代码,尽管这似乎仍然失败。至于标题,我不太确定如何允许这三种文件类型?

<?php
// The file
$filename = 'Channel-Art-Spec.png';

// Set a maximum height and width
$width = 300;
$height = 300;

// Content type
header('Content-Type: image/jpeg');

// Get new dimensions
list($width_orig, $height_orig) = getimagesize($filename);

$ratio_orig = $width_orig/$height_orig;

if ($width/$height > $ratio_orig) {
   $width = $height*$ratio_orig;
} else {
   $height = $width/$ratio_orig;
}

// Resample
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig,         $height_orig);

// Output
imagejpeg($image_p, null, 100);
?>
4

2 回答 2

0

而不是imagecreatefromjpeg()你需要为你正在阅读的文件类型使用适当的函数。

getimagesize()检查类型并给出数组(IMAGETYPE_XXX参见文档)。imageinfo

你也可以使用效率低一点的imagecreatefromstring(file_get_contents($filename)).

于 2013-03-16T19:36:16.130 回答
0

您的代码仅适用于 JPEG 图像的原因是代码中的以下行:

$image = imagecreatefromjpeg($filename);

对于 PNG 图像,请使用imagecreatefrompng.

于 2013-03-16T19:38:21.050 回答