·5 min read

PDF to Text: How to Extract Text from Any PDF for Free

Need to copy text from a PDF that won't let you select it? Here are 5 methods that actually work — including for scanned documents.

The Problem

You open a PDF, try to select text, and... nothing. The text is embedded as an image (scanned document) or the PDF has copy protection. Frustrating.

Method 1: Snelfo PDF to Text (Easiest)

For regular (non-scanned) PDFs:

1. Go to Snelfo PDF Converter 2. Upload your PDF 3. Select "Extract Text" 4. Click Convert 5. Download the text file

The text extraction happens in your browser — your file never gets uploaded.

Method 2: Google Docs OCR

For scanned documents (images of text):

1. Upload the PDF to Google Drive 2. Right-click → Open with → Google Docs 3. Google automatically runs OCR (optical character recognition) 4. The text appears below the original image 5. Copy and paste

This is the best free OCR method. It handles multiple languages and complex layouts.

Method 3: Copy from Browser

Some PDFs allow text selection when opened in a browser:

1. Open the PDF in Chrome or Edge 2. Select the text with your cursor 3. Ctrl + C to copy 4. Paste into any text editor

Method 4: Adobe Acrobat Reader (Free)

1. Open PDF in Adobe Acrobat Reader (free version) 2. Click the Select Tool (cursor icon) 3. Select text → Copy 4. Paste into your document

Method 5: Command Line

For developers, using Python:

```bash pip install pdfplumber ```

```python import pdfplumber

with pdfplumber.open("document.pdf") as pdf: for page in pdf.pages: print(page.extract_text()) ```

Comparison

MethodScanned PDFs?Free?Privacy
|--------|--------------|-------|---------|
SnelfoNo (text PDFs only)YesLocal processing
Google Docs OCRYesYesUploads to Google
Browser copyDependsYesLocal
Adobe ReaderNoYesLocal
pdfplumberNoYesLocal

When to Use Which

  • Regular PDF with selectable text → Snelfo or browser copy
  • Scanned document → Google Docs OCR
  • Protected PDF → Google Docs OCR (bypasses most protection)
  • Batch processing → Command line tools

Pro Tips

1. Always try selecting text first — if it works, just copy-paste 2. OCR isn't perfect — always proofread the extracted text 3. Check for special characters — OCR often misreads symbols and numbers 4. Use the right tool for the job — don't overcomplicate simple extraction

Try It Now

Extract text from your PDF with Snelfo →

Free, private, instant.

← Back to Blog