แล้วพอแสดงบนหน้าจอกลับเป็นพื้นหลังสีดำทั้งหมด ถ้าใช้งานร่วมกันจะต้องแก้ยังไงบ้างค่ะ
code ที่ใช้ร่วม ImageMagick
Code: Select all
<?php
header('Content-type: image/jpeg');
$image = new Imagick('cat-world.jpg');
$image->adaptiveResizeImage(640,480);
?>
<html>
<header></header>
<body>
<table width="100%">
<tr>
<td>
<img src="cat-world.jpg" >
</td>
</tr>
<tr>
<td><?php echo $image;?></td>
</tr>
</table>
</body>
</html>