I have a list of matplotlib figures and I'm wondering if there's any way to concatenate them into a single long png file. I have tried experimenting with MagickWand but it doesn't seem like there is a way to input figures as a canvas.Image.
As well I have tried creating a pdf with reportlab and then try to interpret with wand but every time I try to open up wand.image.Image(filename=pdf_file_name) in the console, it prints None to the output.
Is there anything that I am overlooking, and/or is there a better way to do this. Preferably this is a PNG file.
Thank you in advance!