You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In poppler it has "pdfseparate"
you can run something like: pdfseparate main_pdf.pdf pdf_page_%d.pdf
This gives you pdf_page_1.pdf ..2..3.. etc
Or alternatively writing a page, right now you can grab a pdffile like:
pdf, err := poppler.Open("file.pdf");
pageCount := pdf.GetNPages();
for i := 0; i < pageCount; i++ {
pdfPage := pdf.GetPage(i);
//write pdfPage to a file?
}
above could allow you to write specific pages if you had an if statement searching for some text() or something as well..
Is there a way to do this? Thank you
The text was updated successfully, but these errors were encountered:
In poppler it has "pdfseparate"
you can run something like:
pdfseparate main_pdf.pdf pdf_page_%d.pdf
This gives you pdf_page_1.pdf ..2..3.. etc
Or alternatively writing a page, right now you can grab a pdffile like:
above could allow you to write specific pages if you had an if statement searching for some text() or something as well..
Is there a way to do this? Thank you
The text was updated successfully, but these errors were encountered: