Imagick::writeImage()函数是PHP中的内置函数,用于将图像写入指定的文件名。此函数将图像文件保存在PHP脚本所在的文件夹中。
用法:
bool Imagick::writeImage( string $filename = NULL )
参数:该函数接受单个参数$filename,该参数保存文件名。此字段是可选的,如果未提供,则将其默认设置为NULL或Imagick::readImage()或Imagick::setImageFilename()设置的文件名。
返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的Imagick::writeImage()函数:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Add blur to image
$imagick->blurImage(12, 1);
// Give a name to file
$imagick->setImageFilename('writeImage.png');
// Write the image
$imagick->writeImage();
?>
输出:
This will save a image with name writeImage.png in the same folder.
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Add floodfillPaintImage
$imagick->floodfillPaintImage("blue", 1, "white", 1, 1, false);
// Write the image with filename as 'writeImage2.png'
$imagick->writeImage('writeImage2.png');
?>
输出:
This will save a image with name writeImage2.png in the same folder.
参考: https://www.php.net/manual/en/imagick.writeimage.php
相关用法
- PHP Gmagick writeimage()用法及代码示例
- PHP Imagick despeckleImage()用法及代码示例
- PHP Imagick separateImageChannel()用法及代码示例
- PHP Imagick setImageIndex()用法及代码示例
- PHP Imagick rollImage()用法及代码示例
- PHP Imagick convolveImage()用法及代码示例
- PHP Imagick sepiaToneImage()用法及代码示例
- PHP Imagick getIteratorIndex()用法及代码示例
- PHP Imagick gammaImage()用法及代码示例
- PHP Imagick flattenImages()用法及代码示例
- PHP Imagick setColorspace()用法及代码示例
- PHP Imagick setFirstIterator()用法及代码示例
- PHP Imagick identifyImage()用法及代码示例
- PHP Imagick setOption()用法及代码示例
- PHP Imagick getOption()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick writeImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。