0

场景:早些时候我直接读取图像的 url 并将图像调整为 4 种不同的大小。但我有执行超时。现在我读取 url 并将其复制到一个临时文件夹中,并将本地临时文件夹中的图像传递给 imagecreatefromjpeg()。

protected static function saveImage($row,$url){
    $percent = 1.0; 
    $imagethumbsize = 200;
    $db = PJFactory::getDbo();
    $details = $db->getImageDetails();
    $max = sizeof($details);
    $tempfilename = "C:".DS."xampp".DS."htdocs".DS."opg-uat".DS."img".DS."temp".DS.$row['CategoryID'].".jpg"; 
    $tempcopy = copy($url,$tempfilename);
   foreach ($details as $array) {
    $new_width=$array[2];
    $new_height=$array[3];
    $newfilename = "C:".DS."xampp".DS."htdocs".DS."opg-uat".DS."img".DS."c".DS.$row['CategoryID']."-".$array[1].".jpg"; 
    $image_p = imagecreatetruecolor($new_width, $new_height);
    $image = imagecreatefromjpeg($tempfilename);
    imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
    imagejpeg($image_p, $newfilename);
 }
 }

错误:图像正确保存在临时文件夹中。但是在目标文件夹中创建了所有大小的图像,但图像看起来只有黑色。(没有得到实际图像)。我猜从本地读取的文件有一些问题。任何想法 ?

提前致谢。

4

2 回答 2

0

你设置$width$height任何地方?

$width = imagesx($image);
$height= imagesy($image);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
于 2013-09-30T07:57:54.927 回答
0

如果您尝试读取文件以外的JPG文件,它将仅返回黑色图像,因此在读取图像时,请检查您的文件真正具有的文件类型,然后在三个(jpeg, png, gif)之间调用正确的函数。

于 2013-09-30T07:35:00.657 回答