在 PHP 中,可以使用 GD 庫或 ImageMagick 庫來實現(xiàn) WebP 與其他圖像格式之間的互相轉(zhuǎn)換。這里將分別介紹這兩種方法。
方法一:使用 GD 庫
首先,確保你的 PHP 安裝包含了 GD 庫并支持 WebP 格式。你可以通過運行 phpinfo()
函數(shù)來檢查 GD 庫是否已啟用以及其支持的格式。
function convertToWebP($source, $destination, $quality = 80) {
$image = imagecreatefromstring(file_get_contents($source));
if ($image) {
imagepalettetotruecolor($image);
imagealphablending($image, true);
imagesavealpha($image, true);
return imagewebp($image, $destination, $quality);
}
return false;
}
$source = 'path/to/your/image.jpg'; // 輸入文件路徑
$destination = 'path/to/your/output.webp'; // 輸出文件路徑
$quality = 80; // 設置 WebP 圖像質(zhì)量,范圍從 0(最差)到 100(最好)
if (convertToWebP($source, $destination, $quality)) {
echo "WebP 圖像已成功創(chuàng)建";
} else {
echo "無法創(chuàng)建 WebP 圖像";
}
function convertFromWebP($source, $destination, $type = 'jpeg') {
$image = imagecreatefromwebp($source);
if ($image) {
switch ($type) {
case 'jpeg':
return imagejpeg($image, $destination);
case 'png':
return imagepng($image, $destination);
case 'gif':
return imagegif($image, $destination);
default:
return false;
}
}
return false;
}
$source = 'path/to/your/image.webp'; // 輸入文件路徑
$destination = 'path/to/your/output.jpg'; // 輸出文件路徑
$type = 'jpeg'; // 輸出文件類型,可以是 'jpeg'、'png' 或 'gif'
if (convertFromWebP($source, $destination, $type)) {
echo "圖像已成功轉(zhuǎn)換";
} else {
echo "無法轉(zhuǎn)換圖像";
}
方法二:使用 ImageMagick 庫
首先,確保你的 PHP 安裝包含了 ImageMagick 庫并支持 WebP 格式。你可以通過運行 phpinfo()
函數(shù)來檢查 ImageMagick 庫是否已啟用以及其支持的格式。
function convertToWebP($source, $destination, $quality = 80) {
try {
$image = new Imagick($source);
$image->setImageFormat('WEBP');
$image->setImageCompressionQuality($quality);
$image->writeImage($destination);
return true;
} catch (Exception $e) {
return false;
}
}
$source = 'path/to/your/image.jpg'; // 輸入文件路徑
$destination = 'path/to/your/output.webp'; // 輸出文件路徑
$quality = 80; // 設置 WebP 圖像質(zhì)量,范圍從 0(最差)到 100(最好)
if (convertToWebP($source, $destination, $quality)) {
echo "WebP 圖像已成功創(chuàng)建";
} else {
echo "無法創(chuàng)建 WebP 圖像";
}
function convertFromWebP($source, $destination, $type = 'jpeg') {
try {
$image = new Imagick($source);
$image->setImageFormat(strtoupper($type));
$image->writeImage($destination);
return true;
} catch (Exception $e) {
return false;
}
}
$source = 'path/to/your/image.webp'; // 輸入文件路徑
$destination = 'path/to/your/output.jpg'; // 輸出文件路徑
$type = 'jpeg'; // 輸出文件類型,可以是 'jpeg'、'png' 或 'gif'
if (convertFromWebP($source, $destination, $type)) {
echo "圖像已成功轉(zhuǎn)換";
} else {
echo "無法轉(zhuǎn)換圖像";
}
注意:在使用這些示例代碼時,請確保已正確安裝和配置了相應的庫(GD 或 ImageMagick),并根據(jù)需要修改文件路徑和參數(shù)。