Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 358572

Portable Document Format (PDF) is a platform-independent standard developed by Adobe System in 1993 for document exchange.

0 votes

Reducing heavy scanned PDF(keeping only OCR and removing scanned image)

Have you tried ocrmypdf with JBIG2? ocrmypdf --optimize 3 --jbig2-lossy in.pdf out.pdf
André Levy's user avatar
2 votes

Batch-OCR many PDFs

On Mac or Linux: parallel --tag -j 2 ocrmypdf '{}' 'output/{}' ::: *.pdf From here. …
André Levy's user avatar