当前位置:Gxlcms > PHP教程 > php获取网络图片在浏览器中显示

php获取网络图片在浏览器中显示

时间:2021-07-01 10:21:17 帮助过:26人阅读

  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, 'https://www.gxlcms.com/imgdst.jpg');
  20. imagejpeg($dst);
  21. imagedestroy($dst);
  22. imagedestroy($im);
  23. // echo '';
  24. }
  25. }
  26. ?>

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

人气教程排行