我有 2 个相同大小的图像,称为image1.png
和image2.png
。在 ImageMagick 中,有没有办法通过从 中获取奇数行image1.png
并与偶数行合并来合并两个图像image2.png
?
问问题
696 次
1 回答
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
于 2016-04-01T12:36:26.387 回答