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

时间:2016-04-01 11:35:46

标签: image graphics imagemagick interlacing

我有2张相同尺寸的图片,名为image1.pngimage2.png。在ImageMagick中,有没有办法通过从image1.png获取奇数行来合并两个图像并与image2.png中的偶数行合并?

1 个答案:

答案 0 :(得分: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