2017-07-20 18 views

答えて

0

& 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") 

hstack

...または積み重ね...

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") 

vstack

あなたかもしれません上記の例を単純化するか、wand.api.libraryを使用してを実装することができます。

+0

ありがとう、私はそれをチェックアウトします。 –

関連する問題