imagewebp()函數是PHP中的內置函數,用於向瀏覽器或文件顯示圖像。此函數的主要用途是在瀏覽器中查看圖像,將任何其他圖像類型轉換為WebP並更改圖像質量。
bool imagewebp( resource $image, int $to, int $quality)
參數:此函數接受上述和以下所述的三個參數:
- $image:它指定要處理的圖像資源。
- $to (Optional):它指定將文件保存到的路徑。
- $quality (Optional):它指定圖像的質量。
返回值:如果成功,此函數將返回TRUE,否則將返回FALSE。
以下示例說明了PHP中的imagewebp()函數:示例1:在此示例中,我們將在瀏覽器中查看圖像。
的PHP
<?php
// Load an image from local webp file
// Images can be converted into webp
// using imagewebp() function or other
// online convertors
$im = imagecreatefromwebp('./geeksforgeeks.webp');
// View the loaded image in browser
// using imagewebp() function
header('Content-type:image/webp');
imagewebp($im);
imagedestroy($im);
?>
輸出:
範例2:在此示例中,我們將PNG轉換為WEBP。
的PHP
<?php
// Load an image from local webp file
// Images can be converted into webp
// using imagewebp() function or other
// online convertors
$im = imagecreatefromwebp('./geeksforgeeks.webp');
// Convert the image into webp
// using imagewebp() function
imagewebp($im, 'converted.webp');
imagedestroy($im);
?>
輸出:
This will save the WEBP version of image in the same folder where your PHP script is.
程序3:在此示例中,我們將更改圖像質量。
的PHP
<?php
// Load an image from local webp file
// Images can be converted into webp
// using imagewebp() function or other
// online convertors
$im = imagecreatefromwebp('./geeksforgeeks.webp');
// Convert the image into webp using imagewebp()
// function and view in the browser
header('Content-type:image/webp');
imagewebp($im, null, 0);
imagedestroy($im);
?>
輸出:
參考: https://www.php.net/manual/en/function.imagewebp.php
相關用法
- p5.js min()用法及代碼示例
- PHP Ds\Set get()用法及代碼示例
- p5.js hue()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js value()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.min()用法及代碼示例
- d3.js d3.mean()用法及代碼示例
- p5.js pan()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- p5.js tan()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagewebp() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。