php壓縮圖片失敗怎麼解決

PHPz
發布: 2023-03-24 15:18:02
原創
1206 人瀏覽過

PHP是一種流行的Web程式語言,其在影像處理領域也佔有重要地位。儘管PHP自帶了許多影像處理函數,但在我最近的專案中,我遇到了一個令人沮喪的問題 - 圖片壓縮失敗。

在這個專案中,我需要將使用者上傳的圖片壓縮到指定的尺寸和質量,以便在網路應用程式中進行展示。為了實現這一目標,我使用了PHP GD庫中的影像處理函數。但是,即使我遵循了所有推薦的最佳做法,例如設定記憶體限制、檢查圖像格式和使用最新的庫版本,但我仍無法成功壓縮圖像。

首先,我嘗試在程式碼中使用imagejpeg函數來壓縮JPEG圖像。以下是我嘗試的程式碼:

<?php
// Load the image
$image = imagecreatefromjpeg(&#39;image.jpg&#39;);

// Resize the image
$resizedImage = imagescale($image, 200);

// Compress and save the image
imagejpeg($resizedImage, &#39;compressed.jpg&#39;, 80);
?>
登入後複製

儘管我嘗試了各種不同的壓縮質量,但最終生成的圖像總是比原始圖像更大,而不是更小。我嘗試了不同的JPEG庫版本,但仍然無濟於事。

接下來,我開始嘗試使用其他圖片格式,如PNG和WebP。我使用以下程式碼來壓縮PNG圖像:

<?php
// Load the image
$image = imagecreatefrompng(&#39;image.png&#39;);

// Resize the image
$resizedImage = imagescale($image, 200);

// Compress and save the image
imagepng($resizedImage, &#39;compressed.png&#39;, 9);
?>
登入後複製

但是,我再次遇到了相同的問題 - 生成的圖像比原始圖像更大。

最後,我嘗試了Google的WebP格式,以期降低圖片大小。我使用libwebp庫和以下程式碼來壓縮圖片:

<?php
// Load the image
$image = imagecreatefromjpeg(&#39;image.jpg&#39;);

// Resize the image
$resizedImage = imagescale($image, 200);

// Convert the image to WebP format
imagewebp($resizedImage, &#39;compressed.webp&#39;, 80);
?>
登入後複製

遺憾的是,即使是使用WebP格式,我也無法成功壓縮圖片。

在多次嘗試之後,我終於找到了解決方案。問題出在我在程式碼中使用了imagescale。這個函數實際上產生了一個新的圖像副本,而不是真正的壓縮原始圖像。因此,使用該函數會導致生成的圖像比原始圖像更大。

為了解決這個問題,我改用imagecopyresampled函數,該函數可以在不生成新的圖像副本的情況下壓縮原始圖像。以下是我修改後成功的程式碼:

<?php
// Load the image
$image = imagecreatefromjpeg(&#39;image.jpg&#39;);

// Get the original dimensions of the image
$width = imagesx($image);
$height = imagesy($image);

// Calculate the new dimensions of the image
$newWidth = 200;
$newHeight = $height * ($newWidth / $width);

// Create a new image with the new dimensions
$resizedImage = imagecreatetruecolor($newWidth, $newHeight);

// Copy and resample the original image into the new image
imagecopyresampled($resizedImage, $image, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);

// Compress and save the image
imagejpeg($resizedImage, &#39;compressed.jpg&#39;, 80);
?>
登入後複製

現在,透過使用imagecopyresampled函數,我可以輕鬆地壓縮JPEG、PNG和WebP圖像,而不會出現壓縮失敗的問題。我希望我的經驗能夠幫助其他網頁開發人員避免在影像處理中遇到相同的問題。

以上是php壓縮圖片失敗怎麼解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板