Search found 1 match
- 2019-03-30T15:42:59-07:00
- Forum: Users
- Topic: Batch convert pdfs in place (solved)
- Replies: 0
- Views: 13676
Batch convert pdfs in place (solved)
In case anyone else ends up in a similar situation and is searching this forum like I was, the solution turned out to be: Use batch for-loops Extract images with pdfimages (from xpdf tools ) Convert extracted images with imagemagick I used a batch file like: for /r %%i in (*.pdf) do pdfimages "%%i ...