Imagick结合图像

时间:2016-05-17 14:46:22

标签: php imagemagick imagick

我使用Imagick将少量图像合并为一个,这里是代码:

foreach($this->images as $image) {
    $stack->addImage($image['imagick']);
}

$montage = $stack->montageImage(new ImagickDraw(), $placing, $this->resultWidth."x".$this->resultHeight, 0, 0);
$montage->writeImage($result);

我收到此http://prntscr.com/b54uwe

我试图连接2张图像1和2,我还需要帮助,如何将图像与它们之间的空格组合起来?

1 个答案:

答案 0 :(得分:0)

  

如何将图像与它们之间的空格组合起来?

thumbnail_geometry应包含宽度/高度和偏移量(例如WxH+L+T)。

要消除空白,第三个参数将是......

$stack->montageImage(new ImagickDraw(),
                     $placing,
                     $this->resultWidth.'x'.$this->resultHeight.'+0+0',
                     0,
                     0);