douyi2107 2017-01-28 10:01
浏览 53
已采纳

通过php从URL获取最大的图像

Is it possible to find the largest Image from the one I get back.

Here is the Code I have so far:

    <?php
$url="https://wikipedia.org/wiki/PHP";

$html = file_get_contents($url);

$doc = new DOMDocument();
@$doc->loadHTML($html);

$tags = $doc->getElementsByTagName('img');

foreach ($tags as $tag) {
       echo $tag ->getAttribute('src');

}
?>

For example img 1: 420x120px ; img 2: 1200x300px --> output link Url from img 2

  • 写回答

2条回答 默认 最新

  • doujiang2812 2017-01-28 10:09
    关注

    You can use getimagesize() and max() in following way:-

    $size_array = array(); // create an new empty array
    foreach ($tags as $tag) {
           $size_array[getimagesize($tag ->getAttribute('src'))] = $tag ->getAttribute('src'); 
    
           //assign size as key and path as value to the newly created array
    }
    $max_size = max(array_keys($size_array)); // get max size from keys array
    $max_file = $size_array[$max_size]; // find out file path based on max-size
    

    Note:- I have assumed that $tag ->getAttribute('src') is giving you path of the image files

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部