Hi All,
I have a pdf file with 10 pages and I need to convert it into a single image.
Can anyone suggest me the steps for this.
Hi All,
I have a pdf file with 10 pages and I need to convert it into a single image.
Can anyone suggest me the steps for this.
Converting 10 pages into a single image, will compress the data significantly.
You can export each page individually using Export PDF Page as Image enclosed in a For Loop.
The maximum DPI is 270
Here is the approach I would go with:
The Flow:
The Explanation:
currentIndex < pdfPageCount
"Data\PDF Images\" + currentIndex.ToString + ".png"
currentIndex + 1
because Index for While starts from 0, but PDF page starts from 1.The Output:
As you can see, the pages are extracted as Images:
I am not aware of any feature/activity that can merge these images to a single image.
You could try pasting them in a single Page of a Word file and export that page as image.
Follow this approach:
Use Export PDF Page as Image activity to export pdf pages as images
Once you have all the images, combine them with each other using this solution.
How to merge the Two images - #4 by amaresan