如何通过PHP从另一个域输出图像

时间:2010-05-19 15:40:44

标签: php image

电子邮件中的图片标记:

<img src="http://www.mydomain.com/image.php?lastest=1">

image.php脚本的一部分:

case 'image/gif': header('Content-type: image/gif');$img=@imagecreatefromgif($image['src']);if($img) {imagegif($img);imagedestroy($img);}
break;

但我怎么能用这张图片做同样的事呢?

http://www.anotherdomain.com/image.gif

感谢。

1 个答案:

答案 0 :(得分:0)

使用.htaccess并重定向请求,例如:

RewriteRule image.gif$ /image.php?lastest=1 [l]