I have a folder where i have stored multiple .bmp images, which I want to place in a .pdf file in a structured manner. Can anyone assist.
Say I have 100 .bmp images in a folder named as image1, image2....image100.
I want to display these images in the PDF file as mentioned below, say 5 lines per PDF page.
-image1 and image2 placed side by side in line 1
-image3 and image4 placed side by side in line 2
-image5 and image6 placed side by side in line 3
...
...
-image99 and image100 placed side by side in line 50
the code should,
- Fetch the images from the foleder
- Render the size and resolution of these images as per requirement
- Position the images in specific location in the PDF
I looked around for the solution and found the answer in FPDF library. I am sharing the very rough solution i cobbled up.