我有以下生成图像的脚本。问题是运行脚本的进程没有关闭。它只是保持打开状态,我最终收到来自CSF的通知,即处理时间超过了一定的时间限制。我可以对代码进行哪些更改来解决此问题?
<?php
$rgb = $_GET["color"];
$rgb = intval("0x" . $rgb, 16);
$img = imagecreatetruecolor(250,250);
imagefill($img,1,1,$rgb);
header('Content-Type: image/jpeg');
imagejpeg($img, NULL, 100);
imagedestroy($img);
?>