我想通过我的服务器(wasit 服务器)从其他服务器检索图像并将其发送给客户端。我使用了这个结构:
测试.html:
<img src="test2.php?img=http://the server/img/a.jpg">
测试2.php:
<?php
ob_start();
if (isset($_GET['img'])) {
$im = imagecreatefromjpeg($_GET['img']);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($im);
}
ob_end_flush();
?>
但它不起作用。
为什么?请帮我 !!!