Gmagick::setimageformat()函數是PHP中的內置函數,用於設置圖像格式。
用法:
Gmagick Gmagick::setimageformat( string $imageFormat )
參數:該函數接受單個參數$imageFormat,該參數保存圖像格式。
返回值:成功時,此函數返回Gmagick對象。
異常:此函數在錯誤時引發GmagickException。
下麵給出的程序說明了PHP中的Gmagick::setimageformat()函數:
使用的圖片:
程序1:
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Set the format
$gmagick->setimageformat('jpeg');
// Get the format
$format = $gmagick->getimageformat();
echo $format;
?>
輸出:
jpeg
程序2:
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Set the format
$gmagick->setimageformat('jpeg');
// Get the format
$gmagick->write('mynewimage.' . $gmagick->getimageformat());
echo 'Image saved in same folder successfuly';
?>
輸出:
This will change the format to jpeg from png and save image in same folder.
參考: https://www.php.net/manual/en/gmagick.setimageformat.php
相關用法
- PHP Imagick setImageFormat()用法及代碼示例
- PHP Gmagick getimagedepth()用法及代碼示例
- PHP Gmagick setimageresolution()用法及代碼示例
- PHP Gmagick enhanceimage()用法及代碼示例
- PHP Gmagick getimageresolution()用法及代碼示例
- PHP Gmagick equalizeimage()用法及代碼示例
- PHP Gmagick getcopyright()用法及代碼示例
- PHP Gmagick setimageunits()用法及代碼示例
- PHP Gmagick trimimage()用法及代碼示例
- PHP Gmagick getimagechanneldepth()用法及代碼示例
- PHP Gmagick setimagedepth()用法及代碼示例
- PHP Gmagick cropimage()用法及代碼示例
- PHP Gmagick getimageunits()用法及代碼示例
- PHP Gmagick setimagechanneldepth()用法及代碼示例
- PHP Gmagick edgeimage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Gmagick setimageformat() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。