I can't find a solution that works for me.
I have a number of already existing figures i created earlier and want to combine them into one pdf landscape page. the graphic files are standard matplotlib savefig's as .png.
So how can I simply combine, say four, plots to save them as one pdf page with python? I would like to arrange them like this:
*-----------------------------------------------------------------------------------*
| |
| *-------------------------------* *-------------------------------* |
| | | | | |
| | | | | |
| | fig 1 | | fig 2 | |
| | | | | |
| | | | | |
| *-------------------------------* *-------------------------------* |
| |
| |
| *-------------------------------* *-------------------------------* |
| | | | | |
| | | | | |
| | fig 3 | | fig 4 | |
| | | | | |
| | | | | |
| *-------------------------------* *-------------------------------* |
| |
*-----------------------------------------------------------------------------------*
is there some very simple way to to this?
Thanks for the help,
Tobias