php 獲取遠端圖片大小 寬高
阿新 • • 發佈:2018-12-29
/** * 獲取遠端圖片的寬高和體積大小 * * @param string $url 遠端圖片的連結 * @param string $type 獲取遠端圖片資源的方式, 預設為 curl 可選 fread * @param boolean $isGetFilesize 是否獲取遠端圖片的體積大小, 預設false不獲取, 設定為 true 時 $type 將強制為 fread * @return false|array */ function myGetImageSize($url, $type = 'curl', $isGetFilesize = false) { // 若需要獲取圖片體積大小則預設使用 fread 方式 $type = $isGetFilesize ? 'fread' : $type; if ($type == 'fread') { // 或者使用 socket 二進位制方式讀取, 需要獲取圖片體積大小最好使用此方法 $handle = fopen($url, 'rb'); if (! $handle) return false; // 只取頭部固定長度168位元組資料 $dataBlock = fread($handle, 168); } else { // 據說 CURL 能快取DNS 效率比 socket 高 $ch = curl_init($url); // 超時設定 curl_setopt($ch, CURLOPT_TIMEOUT, 5); // 取前面 168 個字元 通過四張測試圖讀取寬高結果都沒有問題,若獲取不到資料可適當加大數值 curl_setopt($ch, CURLOPT_RANGE, '0-167'); // 跟蹤301跳轉 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // 返回結果 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $dataBlock = curl_exec($ch); curl_close($ch); if (! $dataBlock) return false; } // 將讀取的圖片資訊轉化為圖片路徑並獲取圖片資訊,經測試,這裡的轉化設定 jpeg 對獲取png,gif的資訊沒有影響,無須分別設定 // 有些圖片雖然可以在瀏覽器檢視但實際已被損壞可能無法解析資訊 $size = getimagesize('data://image/jpeg;base64,'. base64_encode($dataBlock)); if (empty($size)) { return false; } $result['width'] = $size[0]; $result['height'] = $size[1]; // 是否獲取圖片體積大小 if ($isGetFilesize) { // 獲取檔案資料流資訊 $meta = stream_get_meta_data($handle); // nginx 的資訊儲存在 headers 裡,apache 則直接在 wrapper_data $dataInfo = isset($meta['wrapper_data']['headers']) ? $meta['wrapper_data']['headers'] : $meta['wrapper_data']; foreach ($dataInfo as $va) { if ( preg_match('/length/iU', $va)) { $ts = explode(':', $va); $result['size'] = trim(array_pop($ts)); break; } } } if ($type == 'fread') fclose($handle); return $result; } // 測試的圖片連結 echo '<pre>'; $result = myGetImageSize('http://s6.mogujie.cn/b7/bao/120630/2kpa6_kqywusdel5bfqrlwgfjeg5sckzsew_345x483.jpg_225x999.jpg', 'curl'); print_r($result); echo '<hr />'; $result = myGetImageSize('http://s5.mogujie.cn/b7/bao/120629/6d3or_kqytasdel5bgevsugfjeg5sckzsew_801x1193.jpg', 'fread'); print_r($result); echo '<hr />'; $result = myGetImageSize('http://hiphotos.baidu.com/zhengmingjiang/pic/item/1c5f338c6d22d797503d92f9.jpg', 'fread', true); print_r($result); echo '<hr />'; $result = myGetImageSize('http://www.vegandocumentary.com/wp-content/uploads/2009/01/imveganlogotransparentbackground.png', 'curl', true); print_r($result); echo '<hr />'; $result = myGetImageSize('http://jiaoyou.ai9475.com/front/templates/jiaoyou/styles/default/image/ad_pic_1.gif', 'fread'); print_r($result);