0
<?php

header('Content-type: image/jpeg');

$image = new Imagick('image.jpg');

// If 0 is provided as a width or height parameter,
// aspect ratio is maintained
$image->thumbnailImage(100, 0);

echo $image;

?>

エラーが発生しています 画像「http://localhost/test/into.php」にエラーが含まれているため、表示できません。解決してください。

4

2 に答える 2

1

コメント行の詳細をお読みください

<?php

//drawing stuff that creates $image

ob_get_clean(); //this statement is what mine was lacking before I could get it to work properly
header("Content-type: image/png");
echo $image;
于 2020-05-29T09:26:52.513 に答える
0

画像は高さ 0 px で作成され、おそらく無効な形式です。docsを試してみてください。

$image->thumbnailImage(100, 100);
于 2012-07-28T15:49:40.697 に答える