'Build a image from multiple images
I have multiple images (more than 1000 / 288*288) with their respective coordinates (X,Y). All pictures put together should displayed a unique picture. However some picture are missing.
Would it be possible to create a blank picture (via an array taken max(Y) and max(X)) and put each picture in the appropriate place?
Thanks
Solution 1:[1]
Try this: https://note.nkmk.me/en/python-pillow-concat-images/ It is a python library to work with images. You can create a blank image and then paste your images there.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | neqit |