0

I have a rozer page where I show other rozer page using 5 iframes. now want to convert these iframes to pdf after loaded full page. how can I do this?

    <iframe class="page-inner" src="/ReportFirstPage</iframe>
    <iframe class="page-inner" src="/ReportGenerate"</iframe>
    <iframe class="page-inner" src="/ThirdPage"></iframe>
    <iframe class="page-inner" src="/ForthPage"></iframe>
    <iframe class="page-inner" src="/FifthPage"></iframe>
Snp Sujon
  • 1
  • 3

1 Answers1

0

I think its best if you download an external application like wkhtmltopdf and call that in command line. Either you can generate a html page and feed that to wkhtmltopdf, or generate the iframes separately and then merge the PDF files with a tool such as ghostscript.

I recommend the following tools:

Good luck for the project!

molbal
  • 974
  • 1
  • 10
  • 23