imageaffine()函数是PHP中的内置函数,用于使用可选的剪切区域获取包含仿射变换的src图像的图像。仿射是涉及矩阵的几何变换操作。
用法:
resource imageaffine( resource $image, array $affine, array $clip )
参数:此函数接受上述和以下所述的三个参数:
- $image:它指定图像资源。
- $affine:它使用键0到5指定数组。
- $clip:它指定要裁剪的区域。
返回值:如果成功,此函数返回关联的图像资源,如果失败,则返回FALSE。
异常:该函数在出错时引发Exception。
下面给出的程序说明了PHP中的imageaffine()函数:
程序1:
<?php
// Create a image from url
$im = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Affine the image
$newimage = imageaffine($im, [ -1.3, 0, 0, -0.7, 0, 0 ]);
// Output the image
header('Content-Type:image/png');
imagepng($newimage);
?>
输出:
程序2:
<?php
// Create a image from url
$im = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
$clipped = [
'x' => 0,
'y' => 0,
'width' => 200,
'height' => 200,
];
// Affine the image
$newimage = imageaffine($im, [-1, 0, 0, sin(4), 0, 0], $clipped);
// Output the image
header('Content-Type:image/png');
imagepng($newimage);
?>
输出:
参考: https://www.php.net/manual/en/function.imageaffine.php
相关用法
- PHP Ds\Map xor()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP pi( )用法及代码示例
- p5.js hex()用法及代码示例
- p5.js nfp()用法及代码示例
- p5.js value()用法及代码示例
- p5.js nfs()用法及代码示例
- p5.js hue()用法及代码示例
- p5.js str()用法及代码示例
- d3.js d3.max()用法及代码示例
- d3.js d3.set.has()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imageaffine() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。