我有2张相同尺寸的图片,名为image1.png
和image2.png
。在ImageMagick中,有没有办法通过从image1.png
获取奇数行来合并两个图像并与image2.png
中的偶数行合并?
答案 0 :(得分:0)
当然,让备用行透明:
# Make red test image
convert -size 300x200 xc:red red.png
# Make blue test image
convert -size 300x200 xc:blue blue.png
# Merge with alternate lines made transparent
convert red.png \( blue.png -alpha on -channel A -fx 'j%2' \) -composite result.png
或者,考虑它的另一种方法是加载两个图像,然后从第一个(u
)或第二个(v
)中选择像素,具体取决于行:
convert red.png blue.png -fx 'j%2 ? u : v' result.png
在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