Forum Discussion
How to copy text from PDF that cannot be copied?
I've got this PDF that I can read just fine, but for some reason I can't copy text from PDF at all—the selection tool just won't grab anything, and right-clicking gives me no copy option. It's really frustrating because I need to quote a few paragraphs for my project, but I can't copy text from PDF without manually retyping everything.
so I'm hoping someone knows a free trick or tool that doesn't involve uploading my file to some random website or paying for expensive software.
9 Replies
- Emily2002Tin Contributor
When text cannot be copied from a PDF, identify the cause before choosing a solution:
- Scanned or image-based PDF: Each page is an image with no selectable text layer. OCR is required.
- Copying restricted by security settings: The PDF contains text, but its permissions block copying. You need authorization and the appropriate permissions password.
When the PDF consists of images, use Windows 11 Snipping Tool for a short passage. For an entire scanned PDF, use an online OCR converter or a desktop application.
- No-download methods
Copy text from a scanned PDF with Snipping Tool
Windows 11 Snipping Tool can recognize text from a screenshot without installing another application. It is useful for a paragraph or one scanned page.
- Open the PDF and zoom in until the text is clear.
- Press Windows + Shift + S.
- Drag over the section containing the text.
- Open the screenshot in Snipping Tool.
- Select Text actions > Copy all text.
- Paste the extracted text into Word, Notepad, or another application.
This method does not make the original PDF searchable and is inefficient for a long document. Recognition can also be less accurate with blurry scans, handwriting, tables, or very small text.
Convert scanned PDF to editable Word online with PDFgear
PDFgear's online PDF-to-Word OCR tool can convert a scanned or image-based PDF into an editable Word document without installing software or creating an account.
- Go to the PDFgear website.
- From the top menu, select PDF Online Tools > PDF to Word.
- Click Select PDF File and add the scanned PDF.
- Select Advanced convert mode, then click Convert.
- Click Download File to save the editable Word document locally.
This method is suitable when you want a free editable DOCX file without installing a desktop application.
- Desktop methods
Extract scanned PDF text with PDFgear Desktop
PDFgear Desktop is free and requires no account or sign-in. It can convert scanned PDFs into editable Word or TXT files, or apply OCR directly to make the original PDF searchable and copyable. The following steps show how to use OCR to make a scanned PDF searchable and copyable.
- Open the PDF in the PDFgear desktop app.
- From the top toolbar, select Home > OCR.
- Enter or select the page range to process, then choose the language contained in the PDF.
- Click Apply to start OCR.
- After processing, search for or select the recognized text and copy it.
- Save the OCR-processed PDF under a new name if you want to retain the searchable text layer.
PDFgear supports OCR in more than 30 languages. All features in the PDFgear desktop app run locally and can be used offline. Use Convert from PDF with OCR enabled to turn a scanned file into an editable Word document, and use the OCR tool in the menu to keep the PDF format while making its text searchable and copyable.
Make PDF text searchable with Adobe Acrobat Pro
Adobe Acrobat Pro is the paid professional option for applying OCR to an entire PDF and adding a searchable, selectable text layer.
- Open the PDF in Adobe Acrobat Pro.
- Select All tools > Scan & OCR.
- Choose Recognize Text > In This File.
- Select the correct document language and page range.
- Select Recognize Text to run OCR.
- Select and copy the required text from the searchable PDF.
Overall, if you do not want to install software, use the Snipping Tool or PDFgear Online for free. However, Snipping Tool is not practical for extracting text from a long PDF; for a full document, use PDFgear or Adobe Acrobat Pro to make PDF text searchable and selectable instead.
Do not use OCR to bypass intentional copying restrictions. If the PDF's security settings list Content Copying as Not Allowed, request an unlocked copy or the authorized permissions password from the document owner. For scanned PDFs, always proofread names, numbers, dates, punctuation, and tables after OCR.
- OliverDavisIron Contributor
Why you can't copy text from PDF: The problem is usually because the PDF is either a scanned image (not actual text) or has copy restrictions applied to it.
- CameronWangIron Contributor
If you're okay with a quick online step , Google Docs is excellent for both scanned and restricted PDFs. It serves as a powerful tool when you need to copy text from pdf that cannot be copied due to security restrictions or image-based formatting.
Simply upload the PDF to Google Drive, right-click it, and select "Open with" → Google Docs. The platform runs OCR on scans and strips away restrictions, allowing you to easily copy text from pdf that cannot be copied in its original format.
Pros: No installation required and works effectively with scanned images.
Cons: Uploads your file to Google servers, which poses a potential privacy risk.
- ChristopherLewisIron Contributor
Microsoft Word offers a built-in PDF conversion feature to address the need to copy text from pdf that cannot be copied. This feature converts PDF files directly into editable Word documents.
How to Fix copy text from pdf that cannot be copied
- Launch the desktop version of the software, or open Word Online.
- Click File, select Open, and then choose the target PDF file from your local storage.
- Wait for Word to convert the PDF into an editable .docx document.
- Select any text you need from the converted file.
- Copy the selected text and paste it into your target editor, notes, or document.
Disadvantages
- Not suitable for PDF files generated from scanned documents that contain only images and no selectable text.
- Complex layouts may become distorted after conversion.
- Converting large PDF files takes a long time.
- Encrypted PDF files with copying restrictions sometimes cannot be converted properly.
The PDF conversion method is a fast, built-in solution for editable text PDFs, ideal for users who want to copy text from a PDF but cannot do so without installing additional third-party tools. However, it cannot handle scanned image PDFs that do not have embedded text layers.
ps
- Only PDF files containing editable text are supported; for image-based PDFs created from scanned documents, you’ll need to use an OCR tool.
- Password-protected PDF files must be unlocked before they can be opened in Word to extract text.
- Save a backup copy of the original PDF beforehand to avoid losing the source file’s formatting after conversion.
- ValinTin Contributor
Using Tesseract and OCRmyPDF together is a powerful, completely free, and open-source way to tackle the problem when you can't copy text from PDF files. It's a bit more technical than using a point-and-click tool, but it's incredibly effective because it adds a hidden, searchable text layer right underneath the image of your scanned page. This means you can then select and copy the text just like you would in any normal document, solving the issue of when you can't copy text from PDF through standard methods.
Once everything is installed, open your command prompt or terminal and navigate to the folder with your PDF. Here are the basic commands to get you started:
Basic OCR on a PDF: This is the simplest command. It takes your locked input.pdf, runs OCR, and creates a new searchable output.pdf file.
bash
ocrmypdf input. pdf output. pdf
Specify a language: If your document isn't in English, use the -l flag followed by the language code (e.g., fra for French).
bash
ocrmypdf -l fra input.pdf output. pdf
Force OCR on all pages: If your PDF already has some text but you still want to redo the OCR on the entire thing, use the --force-ocr flag to process the pages as images.
bash
ocrmypdf --force-ocr input. pdf output. pdf
Get a separate text file: If you just want the plain text extracted, you can use the --sidecar option to create a companion .txt file.
bash
ocrmypdf --sidecar output. txt input. pdf output. pdf
Improve accuracy for messy scans: For documents that are crooked or have a noisy background, you can add commands like --deskew (to straighten) and --clean (to reduce noise), which can significantly improve text recognition accuracy.
bash
ocrmypdf --deskew --clean input. pdf output. pdf
If you can't copy text from PDF, this method might feel a bit "under the hood," but it's incredibly reliable and gives you full control over the process. It's a fantastic skill to have when you run into a PDF that just won't cooperate.
- xartinTin Contributor
You've run into one of those PDFs that won't let you highlight or copy a single word, huh? Super annoying. When you're facing a PDF that's locked down or is just a big scanned image, a web-based OCR service is your new best friend. It basically "reads" the text from a picture of it, letting you copy text from pdf that cannot be copied through other means.
Here’s the casual, no-nonsense way to do it:
1. Your Web-Based Options:
he Browser Extension Route (Super Convenient): This is my favorite way. You just install a browser add-on (like "SnipText," "OCR-Image Reader," or "Enable Copy Extension" for Chrome or Firefox) . These let you drag a box around the text on the PDF you're viewing in your browser. A popup appears with the extracted text, ready for you to copy . Many of these run entirely offline on your machine, meaning your private info never goes anywhere else.
2. The Standalone Online Converter (Easiest for Quick Jobs): If you don't want to install an extension, just hop onto a free website like "Online OCR" or "Free Online OCR" . You upload the PDF, and the site's OCR engine processes it, giving you back the text you can copy. Quick tip: Be careful with these if your PDF has sensitive info like bank statements or personal IDs, because you're sending your file to someone else's server.
3. The One-Two Punch for Stubborn PDFs: Sometimes, a PDF has both restrictions. It might use a weird, scrambled font to block copying and be a scanned image . In that case, the OCR route is the only way. It doesn't care about the tricky font because it only looks at the visual shape of the letters. This is the ultimate way to copy text from pdf that cannot be copied by standard selection. If the OCR is struggling (maybe the scan is blurry or has weird characters), you can sometimes take a screenshot, bump up the contrast in a photo editor, and run OCR on that improved image instead.
- DashielQuinnIron Contributor
Windows PowerToys is an official toolkit released by Microsoft for Windows 10 and Windows 11. Its built-in Text Extraction feature provides an offline OCR solution that addresses the issue where you can't copy text from pdf when working with scanned, encrypted, or image-only PDF files. This feature recognizes text directly on the screen without requiring you to upload the file to an online server, making it a very convenient local tool when standard copy shortcuts fail to grab PDF content.
How to Fix Can't copy text from PDF
Step 1: Download and install the software for free from Microsoft’s official channels.
Step 2: Open the software and enable the Text Extractor module.
Step 3: Open the target PDF file using any PDF reader.
Step 4: Press the default shortcut key, Win + Shift + T, to launch the capture tool.
Step 5: Drag the mouse to draw a box around the text you want to extract in the PDF.
The recognized text will be automatically copied to the clipboard and can be pasted immediately.
The software text extractor uses Windows' native OCR engine to extract text from images in PDF files. For Windows users who frequently encounter situations where they cannot copy text from PDFs, this is the simplest offline text extraction solution; the entire process takes only about one minute after installation.
Pros
- Offline processing—no need to upload confidential PDF data to the internet.
- Native, built-in OCR functionality that consistently recognizes text in most printed PDFs.
- Simple one-click operation—easy to use with no complex settings required.
- Supports all major PDF readers on Windows 10/11.
Disadvantages
- Can only extract text from screenshots; cannot directly copy editable text layers from standard PDF files.
- Recognition accuracy drops significantly for blurry, skewed, or handwritten text in PDFs.
- Only compatible with Windows 10 and Windows 11; not compatible with Mac or Linux systems.
- OliverWangIron Contributor
Capture2Text is an open-source OCR tool that solves the problem where you can't copy text from pdf for scanned or encrypted PDF files. When regular copy-paste shortcuts fail to grab document content, it delivers an offline local OCR solution to pull text straight from PDF image layers.
It allows you to extract text from any image-based area in a PDF with a single capture, but to use this recognition feature, you need to install the software locally on your computer.
First, download the installation package from the official website, complete the installation steps, and then launch the software. Press the default shortcut key, Win + Q, to activate text capture mode.
Within the PDF window, use your mouse to drag and draw a box around the target text area; the software will automatically recognize the text and copy it to the system clipboard.
Once the capture is complete, you can paste the recognized text into any text editor.
This method is only applicable when can't copy text from pdf due to scanning or encryption, so it is best suited for users who frequently work with image-based PDF documents offline.
If you do not want to upload confidential PDF files to online OCR websites, you can try using this tool. This tool requires manual installation, so please ensure you have sufficient hard drive space before downloading the installer.
- SasKIron Contributor
Here are the detailed steps for using Microsoft OneNote to extract text when you can't copy text from pdf normally. OneNote's built-in OCR is a clever workaround, but the steps can vary slightly depending on your version.
Step-by-Step Guide
Step 1: Insert the PDF into OneNote
- Open the OneNote page where you want to work.
- Go to the Insert tab in the ribbon.
- Click File Printout (or PDF Printout on some versions).
- Browse for and select your PDF file. OneNote will then insert each page of the PDF as a separate image. This is the key step that allows you to bypass the restrictions when you can't copy text from pdf.
Step 2: Copy the Text Using OCR
Right-click on any of the inserted PDF page images.
From the menu that appears, choose one of the following options:
- Copy Text from This Page of the Printout: To copy text only from the page you clicked on.
- Copy Text from All Pages of the Printout: To copy text from the entire document at once.
- A Note on Timing: If the "Copy Text" options don't appear right away, it means OneNote is still processing the image in the background. Wait a moment and try again. In some versions, this process can take up to 24-48 hours, especially if your notebook is synced to the cloud.
Step 3: Paste the Extracted Text
- Click on a blank area of your OneNote page where you want the text to appear.
- Press Ctrl + V (or Command + V on Mac) to paste the text.
The most reliable OCR is found in OneNote 2016. The Windows 10/11 app version processes OCR on Microsoft's servers, which can cause significant delays. For immediate results, you may want to use OneNote 2016.