Make a scanned PDF searchable (OCR)
Run OCR on a scanned PDF in your browser to add an invisible text layer. You can then select, copy, and search the text.
Files are processed entirely in your browser. Nothing is uploaded to any server.
How it works
- 1
Upload PDF
Drop the scanned PDF.
- 2
We OCR each page
Tesseract.js runs in your browser; an invisible text layer is added behind the page image.
- 3
Download searchable PDF
The output looks identical but is now selectable and searchable.
Frequently asked questions
Will the page look different?
Does this run on your server?
Editable text?
How accurate is OCR?
How long does it take?
Related tools
PDF to Text
Extract clean text — works on scans too.
Sign PDF
Add your signature to any PDF.
Fill PDF
Type into PDF form fields and download a filled copy.
Embed this tool
Let your visitors use OCR PDF without leaving your site. Paste the snippet below into any HTML page. Files stay private — everything runs in the visitor's browser.
<iframe
src="https://pdfwox.com/embed/ocr-pdf"
width="100%"
height="600"
style="border:none;border-radius:8px"
title="ocr-pdf tool"
allow="downloads"
loading="lazy"
></iframe>
<script>
window.addEventListener('message',function(e){
if(e.data&&e.data.type==='privpdf-resize'){
var f=document.querySelector('iframe[src="https://pdfwox.com/embed/ocr-pdf"]');
if(f)f.style.height=e.data.height+'px';
}
});
</script>The embed runs entirely in the visitor's browser — no files are uploaded. The iframe resizes automatically to fit its content via postMessage.
Deeper guide