首頁 >後端開發 >php教程 >php取得網頁圖片在瀏覽器中顯示

php取得網頁圖片在瀏覽器中顯示

WBOY
WBOY原創
2016-07-25 08:51:351722瀏覽
  1. Get Image From Web
复制代码

2、文件 getimage.php

  1. // set up variable
  2. $url = $_REQUEST['url'];
  3. // echo "

    8 ".$url."

    ";
  4. $ext = substr($url, strrpos($url, '.') 1);
  5. // echo '

    9 '.$ext.'

    ';
  6. $filename = substr($url, strrpos($url, '/') 1, -(strlen($ext) 1));
  7. // echo '

    10 '.$filename.'

    ';
  8. if ($ext == 'jpg') {
  9. $im = imagecreatefromjpeg($url);
  10. if ($im) {
  11. // echo '

    created image handle

    ';
  12. $width = imagesx($im);
  13. $height = imagesy($im);
  14. $x = $width/2;
  15. $y = $height/2;
  16. $dst = imagecreatetruecolor($x, $y);
  17. imagecopyresampled($dst, $im, 0, 0, 0, 0, $x, $y, $width, $height);
  18. header("Content-Type:image/jpeg");
  19. // imagejpeg($dst, 'imgdst.jpg');
  20. imagejpeg($dst);
  21. imagedestroy($dst);
  22. imagedestroy($im);
  23. // echo '';
  24. }
  25. }
  26. ?>
复制代码

说明: 将收到的url中的网页转换为图片,缩放后再显示到浏览器。



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn