I'm trying to figure out how to join multiple images with vips via python. I have in a folder lets say 30 ( but can be more than 600 ) png files that are stripes, they have resolution 854x289920 ( all the same resolution )...
PIL in python will immediately die if I try join them together horizontally with MemmoryError. So I google around and found VIPS which can do both things I need join the images and make deep zoom image from result.
Unfortunately I'm not sure how to correctly join them horizontally in python.
I have in array a list of images from folder, but how would I loop through them and sequentially write joined image out to disk ?