I have two image files, of equal width, which I would like to append, so that a 750 x 750 pixel file1 and 750 x 200 pixel file2 become a 750 x 950 pixel finalFile. How can I do this using python, preferably with PIL or pillow?
The actual task involves repeating this process to combine 20,000+ files, so manual is not an option.