如何使用 ImageMagick 交错两个图像?

问题描述 投票:0回答:1

我有 2 张相同大小的图像,称为

image1.png
image2.png
。在 ImageMagick 中,有没有办法通过从
image1.png
获取奇数行并与
image2.png
的偶数行合并来合并两个图像?

image graphics imagemagick interlacing
1个回答
0
投票

当然,使交替行透明:

# Make red test image
convert -size 300x200 xc:red red.png

enter image description here

# Make blue test image
convert -size 300x200 xc:blue blue.png

enter image description here

# Merge with alternate lines made transparent
convert red.png \( blue.png -alpha on -channel A -fx 'j%2' \) -composite result.png

enter image description here

或者,另一种思考方式是加载两个图像,然后根据行从第一个 (

u
) 或第二个 (
v
) 中选择像素:

convert red.png blue.png -fx 'j%2 ? u : v' result.png

enter image description here

在 Windows 上,这两个结果为:

REM Do Windows style commands
convert red.png ^( blue.png -alpha on -channel A -fx "j%2" ^) -composite result.png

REM Windows style
convert red.png blue.png -fx "j%2 ? u:v" result.png

如果您想要垂直隔行而不是水平隔行,只需将上述所有示例中的

j
更改为
i
即可。

© www.soinside.com 2019 - 2024. All rights reserved.