我正在尝试使用 php imagick 将一些文本写入图像。它在我的服务器上运行正常,但我在我的 macbook 上运行它时遇到问题。
编码:
/* Text to write */
$text = "Hello World!";
/* Create Imagick objects */
$image = new Imagick();
$draw = new ImagickDraw();
$color = new ImagickPixel('#000000');
$background = new ImagickPixel('none'); // Transparent
/* Font properties */
$draw->setFont('Arial');
$draw->setFontSize(50);
$draw->setFillColor($color);
$draw->setStrokeAntialias(true);
$draw->setTextAntialias(true);
/* Get font metrics */
$metrics = $image->queryFontMetrics($draw, $text);
/* Create text */
$draw->annotation(0, $metrics['ascender'], $text);
/* Create image */
$image->newImage($metrics['textWidth'], $metrics['textHeight'], $background);
$image->setImageFormat('png');
$image->drawImage($draw);
/* Save image */
header("Content-type: image/png");
echo $image;
当我在我的 macbook 上运行它时,处理器卡在 100%,并且进程在 30 秒内被终止,并显示消息:在第 13 行中超出了 30 秒的最大执行时间,这是第 13 行使用 $draw->setFont();
谢谢您的反馈...