/ Published in: PHP
Serve a gif image directly using php code. In this case we could also 301 redirect to the gif which may be more efficient.
Expand |
Embed | Plain Text
$imagepath="filename.gif"; $image=imagecreatefromgif($imagepath); imagegif($image);
You need to login to post a comment.
