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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。