4

我有一个 PHP 脚本,它创建了一个非常高的图像并在其上画了很多线(一种组织网络的外观)。对于我尝试创建的最高图像,线条画会突然停止在图像的中间到底部:http: //i.imgur.com/4Plgr.png

我使用 imagecreate() 遇到了这个问题,然后我发现 imagecreatetruecolor() 可以处理更大的图像,所以我切换到那个。我仍然有同样的问题,但脚本现在可以处理更大的图像。我认为它应该画大约 1200 条线。该脚本的执行时间不超过 3 秒。这是一个完全执行的图像:http: //i.imgur.com/PaXrs.png

我用 ini_set('memory_limit', '1000M') 调整了内存限制,但我的脚本从未接近限制。

如何强制脚本继续绘制直到完成?或者我如何使用 PHP 来创建使用更少内存的图像(我认为这是问题所在)?

if(sizeof($array[0])<300)
$image=imagecreate($width,$height);
else
$image=imagecreatetruecolor($width,$height);
imagefill($image,0,0,imagecolorallocate($image,255,255,255));
for($p=0; $p<sizeof($linepoints); $p++){
$posx1=77+177*$linepoints[$p][0];
$posy1=-4+46*$linepoints[$p][1];
$posx2=77+177*$linepoints[$p][2];
$posy2=-4+46*$linepoints[$p][3];
$image=draw_trail($image,$posx1,$posy1,$posx2,$posy2);
}
imagepng($image,"images/table_backgrounds/table_background".$tsn.".png",9);
imagedestroy($image);

function draw_trail($image,$posx1,$posy1,$posx2,$posy2){
$black=imagecolorallocate($image,0,0,0);
if($posy1==$posy2)
imageline($image,$posx1,$posy1,$posx2,$posy2,$black);
else{
imageline($image,$posx1,$posy1,$posx1+89,$posy1,$black);
imageline($image,$posx1+89,$posy1,$posx1+89,$posy2,$black);
imageline($image,$posx1+89,$posy2,$posx2,$posy2,$black);
}
return $image;
}
4

2 回答 2

1

我将猜测您已经创建了内存泄漏,并且当您对更大的图像执行更多操作时,您最终会达到 PHP 的内存限制。与其提高限制,不如找到泄漏点。

尝试更改您的代码,使其显式取消分配您正在创建的颜色draw_trail$image此外,由于您正在传递资源,因此没有理由返回。

if(sizeof($array[0])&lt;300)
$image=imagecreate($width,$height);
else
$image=imagecreatetruecolor($width,$height);
imagefill($image,0,0,imagecolorallocate($image,255,255,255));
for($p=0; $p&lt;sizeof($linepoints); $p++)
{
    $posx1=77+177*$linepoints[$p][0];
    $posy1=-4+46*$linepoints[$p][1];
    $posx2=77+177*$linepoints[$p][2];
    $posy2=-4+46*$linepoints[$p][3];
    draw_trail($image,$posx1,$posy1,$posx2,$posy2);
}
imagepng($image,"images/table_backgrounds/table_background".$tsn.".png",9);
imagedestroy($image);

function draw_trail($image,$posx1,$posy1,$posx2,$posy2)
{
    $black=imagecolorallocate($image,0,0,0);
    if($posy1==$posy2)
    imageline($image,$posx1,$posy1,$posx2,$posy2,$black);
    else
    {
        imageline($image,$posx1,$posy1,$posx1+89,$posy1,$black);
        imageline($image,$posx1+89,$posy1,$posx1+89,$posy2,$black);
        imageline($image,$posx1+89,$posy2,$posx2,$posy2,$black);
    }
    imagecolordeallocate($black);
}
于 2012-10-18T03:49:01.990 回答
0

在这里。我想通了,或者至少解决了我的问题。我在图像上画了很多线,而我的代码获取这些点的方式产生了很多重复,所以我仍然怀疑这是内存问题。我巩固了所有的要点,去掉了重复,现在它工作得很好。感谢任何试图提供帮助的人。

于 2012-10-18T04:19:08.967 回答