Imagick::affineTransformImage()函数是PHP中的内置函数,可用于根据仿射矩阵来转换图像。
用法:
bool Imagick::affineTransformImage( $matrix )
参数:此函数接受单个参数$matrix,该参数根据旋转,剪切,缩放等来保存仿射矩阵的值,…
返回值:成功时返回True,失败时返回FALSE。
以下示例程序旨在说明PHP中的Imagick::affineTransformImage()函数:
程序:该程序使用Imagick::affineTransformImage()函数通过给定仿射矩阵仿射来变换图像。
<?php
// Create an Imagick object
$imagick = new \Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Create an ImagickDraw object
$imagickDraw = new \ImagickDraw();
// Set the angle
$theta = "35";
// Create affine transformation matrix
$affineRotate = array (
"sx" => cos($theta), "sy" => cos($theta),
"rx" => sin($theta), "ry" => -sin($theta),
"tx" => 0, "ty" => 0,
);
// Use affine() function
$imagickDraw->affine($affineRotate);
// Set the image format
$imagick->setImageFormat("png");
// Use affineImageFormat() function
$imagick->affineTransformImage($imagickDraw);
header("Content-Type: image/png");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/imagick.affinetransformimage.php
相关用法
- PHP Imagick colorFloodfillImage()用法及代码示例
- PHP Imagick morphImages()用法及代码示例
- PHP Imagick linearStretchImage()用法及代码示例
- PHP Imagick levelImage()用法及代码示例
- PHP Imagick setImageDispose()用法及代码示例
- PHP Imagick profileImage()用法及代码示例
- PHP Imagick coalesceImages()用法及代码示例
- PHP Imagick smushImages()用法及代码示例
- PHP Imagick functionImage()用法及代码示例
- PHP Imagick readImageBlob()用法及代码示例
- PHP Imagick identifyFormat()用法及代码示例
- PHP Imagick colorizeImage()用法及代码示例
- PHP Imagick addImage()用法及代码示例
- PHP Imagick clear()用法及代码示例
- PHP Imagick getPage()用法及代码示例
注:本文由纯净天空筛选整理自VigneshKannan3大神的英文原创作品 PHP | Imagick affineTransformImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。