Gmagick::shearimage()函数是PHP中的内置函数,用于沿X轴或Y轴滑动图像的一个边以创建平行四边形。 X方向剪切力使边沿X轴滑动,而Y方向剪切力使边沿Y轴滑动。剪切角用于设置图像的剪切。
用法:
Gmagick Gmagick::shearimage( $color, $xShear, $yShear )
参数:此函数接受上述和以下所述的三个参数:
- 颜色:此参数用于设置背景色。
- $xShear:此参数用于将度数设置为图像的x-shear。
- $yShear:此参数用于将度数设置为图像的y-shear。
返回值:成功时,此函数返回Gmagick对象。
错误/异常:此函数在出错时引发GmagickException。
以下示例程序旨在说明PHP中的Gmagick::shearimage()函数:
程序1:
输入图片:
<?php
// Create a Gmagick object
$gmagick = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/tech.png');
// shear the image.
$gmagick->shearimage('blue', 25, 50);
header('Content-type: image/png');
// Ouput the image
echo $gmagick;
?>
输出:
程序2:
<?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");
$gmagick->drawImage($draw);
// Shear the image
$gmagick->shearimage('yellow', 20, 40);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/gmagick.shearimage.php
相关用法
- PHP Imagick shearImage()用法及代码示例
- PHP Gmagick setimageblueprimary()用法及代码示例
- PHP Gmagick gammaimage()用法及代码示例
- PHP Gmagick addImage()用法及代码示例
- PHP Gmagick borderImage()用法及代码示例
- PHP Gmagick getImageDispose()用法及代码示例
- PHP Gmagick commentImage()用法及代码示例
- PHP Gmagick charcoalimage()用法及代码示例
- PHP Gmagick edgeimage()用法及代码示例
- PHP Gmagick chopimage()用法及代码示例
- PHP Gmagick getImageRenderingIntent()用法及代码示例
- PHP Gmagick setimagetype()用法及代码示例
- PHP Gmagick normalizeimage()用法及代码示例
- PHP Gmagick motionblurimage()用法及代码示例
- PHP Gmagick setimageprofile()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | Gmagick shearimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。