我使用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);
我试图连接2张图像1和2,我还需要帮助,如何将图像与它们之间的空格组合起来?
答案 0 :(得分:0)
如何将图像与它们之间的空格组合起来?
thumbnail_geometry
应包含宽度/高度和偏移量(例如WxH+L+T
)。
要消除空白,第三个参数将是......
$stack->montageImage(new ImagickDraw(),
$placing,
$this->resultWidth.'x'.$this->resultHeight.'+0+0',
0,
0);