如何使用 PHP 壓縮將 PNG 映像轉換為 JPG,同時保持品質並最小化檔案大小?

Patricia Arquette
發布: 2024-11-01 10:57:30
原創
849 人瀏覽過

How can I convert PNG images to JPG with compression in PHP while preserving quality and minimizing file size?

在PHP 中透過壓縮將PNG 轉換為JPG

問題:

問題:

問題:

<code class="php">// Convert PNG image to JPG with transparency in white
$image = imagecreatefrompng($filePath);
$bg = imagecreatetruecolor(imagesx($image), imagesy($image));
imagefill($bg, 0, 0, imagecolorallocate($bg, 255, 255, 255));
imagealphablending($bg, TRUE);
imagecopy($bg, $image, 0, 0, 0, 0, imagesx($image), imagesy($image));
imagedestroy($image);

// Set compression quality (0=worst, 100=best)
$quality = 50;

// Convert to JPG and save to new file
imagejpeg($bg, $filePath . ".jpg", $quality);
imagedestroy($bg);</code>
登入後複製
。種方法在PHP 中將PNG 影像轉換為JPG,同時保持品質並最小化檔案大小。如何實現這一點?

    答案:
  1. PHP 提供了一個影像處理庫,可以輕鬆地在影像格式之間進行轉換。以下是如何透過壓縮將 PNG 檔案轉換為 JPG:
  2. 此程式碼:
  3. 載入 PNG 映像。
使用白色背景和透明像素。 將 PNG 影像複製到白色背景上。 指定 JPG 輸出的壓縮品質。 轉換為 JPG 並儲存結果。

以上是如何使用 PHP 壓縮將 PNG 映像轉換為 JPG,同時保持品質並最小化檔案大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!