场景:早些时候我直接读取图像的 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);
}
}
错误:图像正确保存在临时文件夹中。但是在目标文件夹中创建了所有大小的图像,但图像看起来只有黑色。(没有得到实际图像)。我猜从本地读取的文件有一些问题。任何想法 ?
提前致谢。