Gmagick::drawimage()函数是PHP中的内置函数,用于在当前图像上渲染GmagickDraw对象。
用法:
Gmagick Gmagick::drawimage ( $GmagickDraw )
参数:此函数接受单个参数作为$GmagickDraw,该参数存储渲染图像的操作。
返回值:该函数返回Gmagick对象。
错误/异常:此函数在出错时引发GmagickException。
以下示例程序旨在说明PHP中的Gmagick::drawimage()函数:
程序1:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Create GmagickPixel object
$strokeColor = new GmagickPixel('Red');
$fillColor = new GmagickPixel('Green');
// Set the color, opacity of image
$draw->setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw circle
$draw->circle(250, 250, 100, 150);
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
// Use of drawimage function
$gmagick->drawimage($draw);
// Emboss the image.
$gmagick->embossimage(15, 6);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
程序2:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw rectangle
$draw->rectangle(150, 150, 400, 400);
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/gmagick.drawimage.php
相关用法
- PHP Imagick drawImage()用法及代码示例
- PHP Gmagick getimagegamma()用法及代码示例
- PHP Gmagick labelimage()用法及代码示例
- PHP Gmagick medianfilterimage()用法及代码示例
- PHP Gmagick getimagehistogram()用法及代码示例
- PHP Gmagick getimagegreenprimary()用法及代码示例
- PHP Gmagick blurimage()用法及代码示例
- PHP Gmagick getimagecompose()用法及代码示例
- PHP Gmagick writeimage()用法及代码示例
- PHP Gmagick getimageinterlacescheme()用法及代码示例
- PHP Gmagick embossimage()用法及代码示例
- PHP Gmagick setImageDispose()用法及代码示例
- PHP Gmagick getImageMatte()用法及代码示例
- PHP Gmagick getimageformat()用法及代码示例
- PHP Gmagick getimagecolors()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | Gmagick drawimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。