高效地從具有寬度和高度閾值的URL 獲取圖像
問題:
檢索影像從給定的URL 取得滿足特定寬度和高度要求的資料(例如尺寸均大於或等於200 像素的影像)是Web 開發中的常見任務。但是,使用傳統方法,此過程可能非常耗時。
目前方法:
提供的程式碼迭代所有 。給定 URL 上的元素,使用 getimagesize() 檢索圖片尺寸。雖然這種方法有效,但其執行時間可能會很明顯。
建議的解決方案:
要加速進程,請考慮以下最佳化:
程式碼實作:
以下程式碼提供了包含這些最佳化的更有效率的實作:
<code class="php">require 'simple_html_dom.php'; $url = 'http://www.huffingtonpost.com'; $html = file_get_html($url); $nodes = array(); $start = microtime(); $res = array(); if ($html->find('img')) { foreach ($html->find('img') as $element) { if (startsWith($element->src, "/")) { $element->src = $url . $element->src; } if (!startsWith($element->src, "http")) { $element->src = $url . "/" . $element->src; } $nodes[] = $element->src; } } echo "<pre class="brush:php;toolbar:false">"; print_r(imageDownload($nodes, 200, 200)); echo "<h1>", microtime() - $start, "</h1>"; function imageDownload($nodes, $maxHeight = 0, $maxWidth = 0) { $mh = curl_multi_init(); $curl_array = array(); foreach ($nodes as $i => $url) { $curl_array[$i] = curl_init($url); curl_setopt($curl_array[$i], CURLOPT_RETURNTRANSFER, true); curl_setopt($curl_array[$i], CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729)'); curl_setopt($curl_array[$i], CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($curl_array[$i], CURLOPT_TIMEOUT, 15); curl_multi_add_handle($mh, $curl_array[$i]); } $running = NULL; do { usleep(10000); curl_multi_exec($mh, $running); } while ($running > 0); $res = array(); foreach ($nodes as $i => $url) { $curlErrorCode = curl_errno($curl_array[$i]); if ($curlErrorCode === 0) { $info = curl_getinfo($curl_array[$i]); $ext = getExtention($info['content_type']); if ($info['content_type'] !== null) { $temp = "temp/img" . md5(mt_rand()) . $ext; touch($temp); $imageContent = curl_multi_getcontent($curl_array[$i]); file_put_contents($temp, $imageContent); if ($maxHeight == 0 || $maxWidth == 0) { $res[] = $temp; } else { $size = getimagesize($temp); if ($size[1] >= $maxHeight && $size[0] >= $maxWidth) { $res[] = $temp; } else { unlink($temp); } } } } curl_multi_remove_handle($mh, $curl_array[$i]); curl_close($curl_array[$i]); } curl_multi_close($mh); return $res; } function getExtention($type) { $type = strtolower($type); switch ($type) { case "image/gif": return ".gif"; break; case "image/png": return ".png"; break; case "image/jpeg": return ".jpg"; break; default: return ".img"; break; } } function startsWith($str, $prefix) { $temp = substr($str, 0, strlen($prefix)); $temp = strtolower($temp); $prefix = strtolower($prefix); return ($temp == $prefix); }</code>
優點:
以上是## 如何有效率地從具有維度閾值的 URL 中獲取圖像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!