如何更快地從網頁獲取圖像
從給定 URL 獲取圖像時,滿足特定條件可以提高流程效率。本文將重點介紹提取寬度和高度大於或等於 200 像素的圖像,旨在與冗長的預設方法相比加快該過程。
更快的圖像檢索
傳統方法包括從來源 URL 中順序檢索每個圖像並使用 getimagesize() 驗證其尺寸。然而,這種方法可能很慢並且佔用大量資源。要最佳化速度,請考慮以下改進:
1.利用並行性:
利用curl_multi_init()函數啟動多個同時的HTTP請求,並行擷取影像。這種方法透過利用可用頻寬來顯著減少響應時間。
2.本地儲存映像:
避免在遠端影像上呼叫 getimagesize()。相反,請將圖像下載到本地臨時目錄並在那裡確定它們的尺寸。此步驟消除了與發送額外 HTTP 請求相關的延遲。
其他注意事項:
改進的性能:
透過實施上述技術,可以顯著加速影像檢索。考慮以下範例:
<code class="php">// Start the timer $start = microtime(); // Fetch images using curl_multi_init $res = imageDownload($nodes, 200, 200); // Stop the timer and display elapsed time echo "<h1>", microtime() - $start, "</h1>"; function imageDownload($nodes, $maxHeight = 0, $maxWidth = 0) { // ... (curl_multi_init code here) ... // ... (curl_multi_exec code here) ... $res = array(); // ... (image processing code here) ... return $res; }</code>
範例輸出:
Array ( [0] => temp/img8cdd64d686ee6b925e8706fa35968da4.gif [1] => temp/img5811155f8862cd0c3e2746881df9cd9f.gif [2] => temp/imga597bf04873859a69373804dc2e2c27e.jpg [3] => temp/img0914451e7e5a6f4c883ad7845569029e.jpg [4] => temp/imgb1c8c4fa88d0847c99c6f4aa17a0a457.jpg [5] => temp/img36e5da68a30df7934a26911f65230819.jpg [6] => temp/img068c1aa705296b38f2ec689e5b3172b9.png [7] => temp/imgfbeca2410b9a9fb5c08ef88dacd46895.png ) 0.076347
與原始實作相比,這種改進的方法產生了顯著的效能提升,從而減少了處理時間將近40秒。
以上是## 如何加快網頁影像檢索速度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!