📜  PHP | imagickdraw复合()函数

📅  最后修改于: 2022-05-13 01:56:46.990000             🧑  作者: Mango

PHP | imagickdraw复合()函数

ImagickDraw::compose()函数是PHP中的一个内置函数,用于使用指定的合成运算符、指定的位置和指定的大小将图像合成到当前图像中。

句法:

bool ImagickDraw::compose( int $compose, float $x, float $y,
           float $width, float $height, Imagick $compositeWand )

参数:此函数接受上面提到的六个参数,如下所述:

  • $compose:它指定对应于 COMPOSITE 常量的组合运算符。
  • $x:指定左上角的 y 坐标。
  • $y:指定左上角的 x 坐标。
  • $width:指定合成图像的宽度。
  • $height:指定合成图像的高度。
  • $compositeWand:它指定从其中获取合成图像的 Imagick 对象。

返回值:此函数在成功时返回 TRUE。

下面的程序说明了PHP中的ImagickDraw::compose()函数

方案一:

composite(imagick::COMPOSITE_COLORIZE,
                   100, 100, 200, 200, $imagick);
  
// Create a new Imagick object
$imagick2 = new Imagick();
  
// Create a image on imagick object
$imagick2->newImage(800, 250, 'white');
  
// Render the draw commands
$imagick2->drawImage($draw);
  
// Add border
$imagick->borderImage('green', 1, 1);
  
// Show the output
$imagick2->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick2->getImageBlob();
?>

输出:

方案二:

composite(4, 200, 20, 400, 200, $imagick);
  
// Create a new Imagick object
$imagick2 = new Imagick();
  
// Create a image on imagick object
$imagick2->newImage(800, 250, 'orange');
  
// Render the draw commands
$imagick2->drawImage($draw);
  
// Show the output
$imagick2->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick2->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagickdraw.composite。 PHP