0
ワンド(パイソン)で2枚の画像を並べて重ねるにはどうすればいいですか? Compositeメソッドは利用可能ですが、1つのイメージを別のイメージの上に置きます。 私はnumpy.vstackのようなものが欲しいです。ワンドを使って2枚の画像を並べて並べる
ワンド(パイソン)で2枚の画像を並べて重ねるにはどうすればいいですか? Compositeメソッドは利用可能ですが、1つのイメージを別のイメージの上に置きます。 私はnumpy.vstackのようなものが欲しいです。ワンドを使って2枚の画像を並べて並べる
& left
のパラメータを受け入れます。側の合成画像側にはあまりない努力...もちろん
with Image(filename="rose:") as left:
with Image(filename="rose:") as right:
with Image(width=left.width+right.width,
height=max(left.height, right.height)) as output:
output.composite(image=left, left=0, top=0)
output.composite(image=right, left=left.width, top=0)
output.save(filename="hstack.png")
...または積み重ね...
with Image(filename="rose:") as top:
with Image(filename="rose:") as bottom:
with Image(width=max(top.width, bottom.width),
height=top.height + bottom.height) as output:
output.composite(image=top, left=0, top=0)
output.composite(image=bottom, left=0, top=top.height)
output.save(filename="vstack.png")
あなたかもしれません上記の例を単純化するか、wand.api.library
を使用してを実装することができます。
ありがとう、私はそれをチェックアウトします。 –