我安装了 imagick 并检查以确保类存在等。我可以让它计算 tiffs 和其他东西中的图像。但是,我无法让它显示图像。我正在使用以下代码:
header('Content-type: image/JPG');
$image = new Imagick(' ur to my jpg here ');
$image->thumbnailImage(100, 100);
echo $image;
但它显示一个空白图像。当我查看生成的 HTML 代码时,我得到了这个:
<html>
<body style="margin: 0px;">
<img style="-webkit-user-select: none" src=" url to this page imagechange.php">
</body>
</html>
谁能解释为什么不显示图像?在 HTML 上方,图像 src 显示为我正在使用的 PHP 页面,而不是图像。