oxidize-pdf 1.1.8

A pure Rust PDF generation and manipulation library with zero external dependencies
Documentation

oxidize-pdf

Crates.io Documentation Downloads License: GPL v3 Rust Maintenance

A pure Rust PDF generation and manipulation library with zero external PDF dependencies. Currently in beta stage with ~34% ISO 32000-1:2008 compliance (real API compliance). Generate PDFs with custom fonts, parse standard documents, and perform operations like split, merge, and rotate with a clean, safe API.

Features

  • 🚀 100% Pure Rust - No C dependencies or external PDF libraries
  • 📄 PDF Generation - Create multi-page documents with text, graphics, and images
  • 🔍 PDF Parsing - Read and extract content from existing PDFs (tested on 749 real-world PDFs*)
  • ✂️ PDF Operations - Split, merge, and rotate PDFs while preserving basic content
  • 🖼️ Image Support - Embed JPEG images with automatic compression
  • 🎨 Rich Graphics - Vector graphics with shapes, paths, colors (RGB/CMYK/Gray)
  • 📝 Advanced Text - Custom TTF/OTF fonts, standard fonts, text flow with automatic wrapping, alignment
  • 🅰️ Custom Fonts - Load and embed TrueType/OpenType fonts with full Unicode support
  • 🔍 OCR Support - Extract text from scanned PDFs using Tesseract OCR (v0.1.3+)
  • 🗜️ Compression - Built-in FlateDecode compression for smaller files
  • 🔒 Type Safe - Leverage Rust's type system for safe PDF manipulation

🎉 What's New in v1.1.0+

Major new features (v1.1.6+):

  • 🅰️ Custom Font Support - Load TTF/OTF fonts from files or memory
  • ✍️ Advanced Text Formatting - Character spacing, word spacing, text rise, rendering modes
  • 📋 Clipping Paths - Both EvenOdd and NonZero winding rules
  • 💾 In-Memory Generation - Generate PDFs without file I/O using to_bytes()
  • 🗜️ Compression Control - Enable/disable compression with set_compress()

Significant improvements in PDF compatibility:

  • 📈 Better parsing: Handles more PDF structures including circular references
  • 🛡️ Stack overflow protection - More resilient against malformed PDFs
  • 🚀 Performance: Fast parsing for basic PDF operations
  • Error recovery - Better handling of corrupted files
  • 🔧 Lenient parsing - Handles some malformed PDFs
  • 💾 Memory optimization: New OptimizedPdfReader with LRU cache

Note: *Success rates apply only to non-encrypted PDFs with basic features. The library currently has ~34% real ISO 32000-1:2008 compliance based on API testing (up from 17.8% with custom font support and text state parameters). See Current Limitations and Real ISO Compliance for honest assessment.

Quick Start

Add oxidize-pdf to your Cargo.toml:

[dependencies]
oxidize-pdf = "1.1.0"

# For OCR support (optional)
oxidize-pdf = { version = "1.1.0", features = ["ocr-tesseract"] }

Basic PDF Generation

use oxidize_pdf::{Document, Page, Font, Color, Result};

fn main() -> Result<()> {
    // Create a new document
    let mut doc = Document::new();
    doc.set_title("My First PDF");
    doc.set_author("Rust Developer");
    
    // Create a page
    let mut page = Page::a4();
    
    // Add text
    page.text()
        .set_font(Font::Helvetica, 24.0)
        .at(50.0, 700.0)
        .write("Hello, PDF!")?;
    
    // Add graphics
    page.graphics()
        .set_fill_color(Color::rgb(0.0, 0.5, 1.0))
        .circle(300.0, 400.0, 50.0)
        .fill();
    
    // Add the page and save
    doc.add_page(page);
    doc.save("hello.pdf")?;
    
    Ok(())
}

Custom Fonts Example

use oxidize_pdf::{Document, Page, Font, Color, Result};

fn main() -> Result<()> {
    let mut doc = Document::new();
    doc.set_title("Custom Fonts Demo");
    
    // Load a custom font from file
    doc.add_font("MyFont", "/path/to/font.ttf")?;
    
    // Or load from bytes
    let font_data = std::fs::read("/path/to/font.otf")?;
    doc.add_font_from_bytes("MyOtherFont", font_data)?;
    
    let mut page = Page::a4();
    
    // Use standard font
    page.text()
        .set_font(Font::Helvetica, 14.0)
        .at(50.0, 700.0)
        .write("Standard Font: Helvetica")?;
    
    // Use custom font
    page.text()
        .set_font(Font::Custom("MyFont".to_string()), 16.0)
        .at(50.0, 650.0)
        .write("Custom Font: This is my custom font!")?;
    
    // Advanced text formatting with custom font
    page.text()
        .set_font(Font::Custom("MyOtherFont".to_string()), 12.0)
        .set_character_spacing(2.0)
        .set_word_spacing(5.0)
        .at(50.0, 600.0)
        .write("Spaced text with custom font")?;
    
    doc.add_page(page);
    doc.save("custom_fonts.pdf")?;
    
    Ok(())
}

Parse Existing PDF

use oxidize_pdf::{PdfReader, Result};

fn main() -> Result<()> {
    // Open and parse a PDF
    let mut reader = PdfReader::open("document.pdf")?;
    
    // Get document info
    println!("PDF Version: {}", reader.version());
    println!("Page Count: {}", reader.page_count()?);
    
    // Extract text from all pages
    let document = reader.into_document();
    let text = document.extract_text()?;
    
    for (page_num, page_text) in text.iter().enumerate() {
        println!("Page {}: {}", page_num + 1, page_text.content);
    }
    
    Ok(())
}

Working with Images

use oxidize_pdf::{Document, Page, Image, Result};

fn main() -> Result<()> {
    let mut doc = Document::new();
    let mut page = Page::a4();
    
    // Load a JPEG image
    let image = Image::from_jpeg_file("photo.jpg")?;
    
    // Add image to page
    page.add_image("my_photo", image);
    
    // Draw the image
    page.draw_image("my_photo", 100.0, 300.0, 400.0, 300.0)?;
    
    doc.add_page(page);
    doc.save("image_example.pdf")?;
    
    Ok(())
}

Advanced Text Flow

use oxidize_pdf::{Document, Page, Font, TextAlign, Result};

fn main() -> Result<()> {
    let mut doc = Document::new();
    let mut page = Page::a4();
    
    // Create text flow with automatic wrapping
    let mut flow = page.text_flow();
    flow.at(50.0, 700.0)
        .set_font(Font::Times, 12.0)
        .set_alignment(TextAlign::Justified)
        .write_wrapped("This is a long paragraph that will automatically wrap \
                       to fit within the page margins. The text is justified, \
                       creating clean edges on both sides.")?;
    
    page.add_text_flow(&flow);
    doc.add_page(page);
    doc.save("text_flow.pdf")?;
    
    Ok(())
}

PDF Operations

use oxidize_pdf::operations::{PdfSplitter, PdfMerger, PageRange};
use oxidize_pdf::Result;

fn main() -> Result<()> {
    // Split a PDF
    let splitter = PdfSplitter::new("input.pdf")?;
    splitter.split_by_pages("page_{}.pdf")?; // page_1.pdf, page_2.pdf, ...
    
    // Merge PDFs
    let mut merger = PdfMerger::new();
    merger.add_pdf("doc1.pdf", PageRange::All)?;
    merger.add_pdf("doc2.pdf", PageRange::Pages(vec![1, 3, 5]))?;
    merger.save("merged.pdf")?;
    
    // Rotate pages
    use oxidize_pdf::operations::{PdfRotator, RotationAngle};
    let rotator = PdfRotator::new("input.pdf")?;
    rotator.rotate_all(RotationAngle::Clockwise90, "rotated.pdf")?;
    
    Ok(())
}

OCR Text Extraction

use oxidize_pdf::text::tesseract_provider::{TesseractOcrProvider, TesseractConfig};
use oxidize_pdf::text::ocr::{OcrOptions, OcrProvider};
use oxidize_pdf::operations::page_analysis::PageContentAnalyzer;
use oxidize_pdf::parser::PdfReader;
use oxidize_pdf::Result;

fn main() -> Result<()> {
    // Open a scanned PDF
    let document = PdfReader::open_document("scanned.pdf")?;
    let analyzer = PageContentAnalyzer::new(document);
    
    // Configure OCR provider
    let config = TesseractConfig::for_documents();
    let ocr_provider = TesseractOcrProvider::with_config(config)?;
    
    // Find and process scanned pages
    let scanned_pages = analyzer.find_scanned_pages()?;
    
    for page_num in scanned_pages {
        let result = analyzer.extract_text_from_scanned_page(page_num, &ocr_provider)?;
        println!("Page {}: {} (confidence: {:.1}%)", 
                 page_num, result.text, result.confidence * 100.0);
    }
    
    Ok(())
}

OCR Installation

Before using OCR features, install Tesseract on your system:

macOS:

brew install tesseract
brew install tesseract-lang  # For additional languages

Ubuntu/Debian:

sudo apt-get install tesseract-ocr
sudo apt-get install tesseract-ocr-spa  # For Spanish
sudo apt-get install tesseract-ocr-deu  # For German

Windows: Download from: https://github.com/UB-Mannheim/tesseract/wiki

Supported Features

PDF Generation

  • ✅ Multi-page documents
  • ✅ Vector graphics (rectangles, circles, paths, lines)
  • ✅ Text rendering with standard fonts (Helvetica, Times, Courier)
  • ✅ JPEG image embedding
  • ✅ RGB, CMYK, and Grayscale colors
  • ✅ Graphics transformations (translate, rotate, scale)
  • ✅ Text flow with automatic line wrapping
  • ✅ FlateDecode compression

PDF Parsing

  • ✅ PDF 1.0 - 1.7 basic structure support
  • ✅ Cross-reference table parsing
  • ✅ Object and stream parsing
  • ✅ Page tree navigation (simple)
  • ✅ Content stream parsing (basic operators)
  • ✅ Text extraction (simple cases)
  • ✅ Document metadata extraction
  • ✅ Filter support (FlateDecode, ASCIIHexDecode, ASCII85Decode, RunLengthDecode, LZWDecode)

PDF Operations

  • ✅ Split by pages, ranges, or size
  • ✅ Merge multiple PDFs
  • ✅ Rotate pages (90°, 180°, 270°)
  • ✅ Basic content preservation

OCR Support (v0.1.3+)

  • ✅ Tesseract OCR integration with feature flag
  • ✅ Multi-language support (50+ languages)
  • ✅ Page analysis and scanned page detection
  • ✅ Configurable preprocessing (denoise, deskew, contrast)
  • ✅ Layout preservation with position information
  • ✅ Confidence scoring and filtering
  • ✅ Multiple page segmentation modes (PSM)
  • ✅ Character whitelisting/blacklisting
  • ✅ Mock OCR provider for testing
  • ✅ Parallel and batch processing

Performance

  • Parsing: Fast for PDFs with basic features
  • Generation: Efficient for simple documents
  • Memory efficient: Streaming operations available
  • Pure Rust: No external C dependencies

Examples

Check out the examples directory for more usage patterns:

  • hello_world.rs - Basic PDF creation
  • graphics_demo.rs - Vector graphics showcase
  • text_formatting.rs - Advanced text features
  • custom_fonts.rs - TTF/OTF font loading and embedding
  • jpeg_image.rs - Image embedding
  • parse_pdf.rs - PDF parsing and text extraction
  • comprehensive_demo.rs - All features demonstration
  • tesseract_ocr_demo.rs - OCR text extraction (requires --features ocr-tesseract)
  • scanned_pdf_analysis.rs - Analyze PDFs for scanned content
  • extract_images.rs - Extract embedded images from PDFs
  • create_pdf_with_images.rs - Advanced image embedding examples

Run examples with:

cargo run --example hello_world

# For OCR examples
cargo run --example tesseract_ocr_demo --features ocr-tesseract

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.

Commercial Licensing

For commercial use cases that require proprietary licensing, please contact us about our PRO and Enterprise editions which offer:

  • Commercial-friendly licensing
  • Advanced OCR features (cloud providers, batch processing)
  • PDF forms and digital signatures
  • Priority support and SLAs
  • Custom feature development

Current Limitations & ISO 32000 Compliance

oxidize-pdf currently has 17.8% real ISO 32000-1:2008 compliance based on comprehensive API testing. While ~25-30% may be implemented internally, only 17.8% is accessible through the public API. See ISO_COMPLIANCE_REAL.md for honest assessment.

Supported Features

  • Compression: FlateDecode, ASCIIHexDecode, ASCII85Decode, RunLengthDecode, LZWDecode
  • Color Spaces: DeviceRGB, DeviceCMYK, DeviceGray (basic)
  • Fonts: Standard 14 PDF fonts only
  • Images: JPEG embedding only
  • Basic Operations: Split, merge, rotate, simple text extraction
  • Graphics: Basic vector operations
  • Transparency: Simple opacity (CA/ca parameters)

Major Missing Features (ISO 32000)

  • Rendering: No PDF to image conversion
  • Font Embedding: No TrueType/OpenType embedding
  • Encryption: Very limited support
  • Compression: DCTDecode, CCITTFaxDecode, JBIG2Decode missing
  • Advanced Graphics: Patterns, shadings, gradients, blend modes
  • Forms: No interactive form support (AcroForms)
  • Annotations: Cannot create or modify annotations
  • Digital Signatures: No support
  • Tagged PDFs: No accessibility/structure support
  • CJK Support: No CID fonts or CMaps
  • Advanced Color: No ICC profiles, spot colors
  • JavaScript: No support for PDF JavaScript

Known Issues

  • Font/image references may break during merge operations
  • Text extraction fails on complex layouts
  • No support for right-to-left or vertical text
  • Limited error recovery for malformed PDFs
  • High memory usage for large files without optimization

Important Notes

  • Parsing success doesn't mean full feature support
  • Many PDFs will parse but advanced features will be ignored
  • This is early beta software with significant limitations

Project Structure

oxidize-pdf/
├── oxidize-pdf-core/     # Core PDF library
├── oxidize-pdf-cli/      # Command-line interface
├── oxidize-pdf-api/      # REST API server
├── test-suite/           # Comprehensive test suite
├── docs/                 # Documentation
│   ├── technical/        # Technical docs and implementation details
│   └── reports/          # Analysis and test reports
├── tools/                # Development and analysis tools
├── scripts/              # Build and release scripts
└── test-pdfs/            # Test PDF files

See REPOSITORY_ARCHITECTURE.md for detailed information.

Testing

oxidize-pdf includes comprehensive test suites to ensure reliability:

# Run standard test suite (synthetic PDFs)
cargo test

# Run all tests including performance benchmarks
cargo test -- --ignored

# Run with local PDF fixtures (if available)
OXIDIZE_PDF_FIXTURES=on cargo test

# Run OCR tests (requires Tesseract installation)
cargo test tesseract_ocr_tests --features ocr-tesseract -- --ignored

Local PDF Fixtures (Optional)

For enhanced testing with real-world PDFs, you can optionally set up local PDF fixtures:

  1. Create a symbolic link: tests/fixtures -> /path/to/your/pdf/collection
  2. The test suite will automatically detect and use these PDFs
  3. Fixtures are never committed to the repository (excluded in .gitignore)
  4. Tests work fine without fixtures using synthetic PDFs

Note: CI/CD always uses synthetic PDFs only for consistent, fast builds.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

Roadmap

Community Edition (Open Source)

  • Basic transparency/opacity support (Q3 2025)
  • PNG image support
  • XRef stream support (PDF 1.5+)
  • TrueType/OpenType font embedding
  • Improved text extraction with CMap/ToUnicode

PRO/Enterprise Features

  • Advanced transparency (blend modes, groups)
  • Cloud OCR providers (Azure, AWS, Google Cloud)
  • OCR batch processing and parallel execution
  • PDF forms and annotations
  • Digital signatures
  • PDF/A compliance
  • Encryption support

See our detailed roadmap for more information.

Support

Acknowledgments

Built with ❤️ using Rust. Special thanks to the Rust community and all contributors.