Gmagick::compositeimage()函数是PHP中的内置函数,用于将一个图像按指定的偏移量合成到另一个图像上。偏移量实际上是从第二张图像开始合成的距离。
用法:
Gmagick Gmagick::compositeimage( Gmagick $source, int $COMPOSE, int $x, int $y )
参数:该函数接受上述和以下所述的四个参数:
- $source:它指定要与其他图像合成的图像源。
- $compose:它指定要应用的合成类型。
- $x:它指定x坐标。
- $y:它指定y坐标。
返回值:此函数返回包含合成图像的Gmagick对象。
异常:此函数在错误时引发GmagickException。
以下示例程序旨在说明PHP中的Gmagick::compositeimage()函数:
程序1:该程序使用Gmagick::compositeimage()函数合成两个没有偏移的图像。
<?php
// Create two new Gmagick object
$gmagick1 = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
$gmagick2 = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png');
// Composite the images with no offset
$gmagick1->compositeimage($gmagick2,
Gmagick::COMPOSITE_MULTIPLY, 0, 0);
// Output the image
header('Content-type:image/png');
echo $gmagick1;
?>
输出:
程序2:该程序使用Gmagick::compositeimage()函数合成两个具有偏移量的图像。
<?php
// Create two new Gmagick object
$gmagick1 = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
$gmagick2 = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png');
// Composite the images with offset
$gmagick1->compositeimage($gmagick2,
Gmagick::COMPOSITE_OVER, 300, 0);
// Output the image
header('Content-type:image/png');
echo $gmagick1;
?>
输出:
参考: https://www.php.net/manual/en/gmagick.compositeimage.php
相关用法
- PHP Imagick compositeImage()用法及代码示例
- PHP Gmagick getimagesignature()用法及代码示例
- PHP Gmagick getimagescene()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick getreleasedate()用法及代码示例
- PHP Gmagick separateimagechannel()用法及代码示例
- PHP Gmagick drawimage()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick readimageblob()用法及代码示例
- PHP Gmagick levelimage()用法及代码示例
- PHP Gmagick setfilename()用法及代码示例
- PHP Gmagick setimagerenderingintent()用法及代码示例
- PHP Gmagick getimageresolution()用法及代码示例
- PHP Gmagick setimageresolution()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick compositeimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。