PHP |想象一下 flopImage()函数
Imagick::flopImage()函数是PHP中的一个内置函数,用于创建水平镜像。
句法:
bool Imagick::flopImage( void )
参数:此函数不接受任何参数。
返回值:此函数在成功时返回 True。
下面的程序说明了PHP中的Imagick::flopImage()函数:
方案一:
原图:
flopImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
?>
输出:
方案二:
原图:
setFillColor(new ImagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new ImagickPixel('white'));
// Draw the image
$im->drawImage($draw);
$im->setImageFormat('jpeg');
// using blueShiftImage function
$im->flopImage();
header("Content-Type: image/jpg");
echo $im->getImageBlob();
?>
输出:
参考: http: PHP。 PHP