Stitching Photos together

前端 未结 5 666
长情又很酷
长情又很酷 2020-12-05 03:31

So for this project I\'m working on, I have 2 photos. These two photos need to be stitched together, one on the top and one on the bottom, and then you will be able to see t

5条回答
  •  眼角桃花
    2020-12-05 03:37

    The python imaging library will eat that task for breakfast.

    See the tutorial in particular the "Cutting, Pasting and Merging Images" section for some relevant help.

    For rough outline, load both images with Image.open, find out how big the output image will be by using the size attribute and some addition, create the output image with Image.new and then use the paste method to past the two original images in.

提交回复
热议问题