我想用print调试php生成的图像算法。 问题是它不输出我打印的文本。 我如何输出变量,以便我可以调试? 谢谢, Furtano
public function drawPicture()
{
$im = imagecolorallocate ($this->picture, 255, 0, 255);
imagettftext($this->picture, $this->fontSize , 0, 100, 100,$im , "cooperm.TTF", $this->name);
# int ImageCopy ( resource $dst_im , resource $src_im , int $dst_x , int $dst_y , int $src_x , int $src_y , int $src_w , int $src_h )
//imagecopy($this->picture, $this->pika, $this->wappen['pika']['dst_x'], $this->wappen['pika']['dst_y'], 0, 0, $this->pika_size[0], $this->pika_size[1]);
$zufall = rand(1,99999999);
#header("Content-Type: image/jpeg");
imagepng($this->picture);
$this->checkFontSize();
imagedestroy($this->picture);
print "WHY_DOESNT_PRINT?";
}
答案 0 :(得分:1)
您正在向浏览器发送.png图像,因此浏览器会尝试显示图像。附加文本仅被视为无效图像数据,因此无法显示。
您的问题的解决方案是使用header()
调用将调试消息发送到您的浏览器,或使用Firefox + Firebug + PHP firebug适配器。 Firebug与标题一起传输信息,因此在图像生成功能中是安全的。
答案 1 :(得分:0)
使用rorrorlog调试要查看的脚本。 写入的文件很容易查看。
居:
composer require magento/product-community-edition <version-number> --no-update