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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。