Skip to content

CreatePdf.NET v1.1.0

Choose a tag to compare

@ANcpLua ANcpLua released this 12 Jul 08:45
· 9 commits to main since this release

Stream-based PDF Processing

  • Added Pdf.Load(stream)
  • Returns a PdfReader instance
  • Perfect for integrating with cloud storage, APIs, or distributed systems

Example Usage

// Basic OCR with default settings
await Pdf.Load(pdfStream).OcrAsync();

// Custom OCR settings for individual needs
await Pdf.Load(pdfStream).OcrAsync(new OcrOptions
{
  Dpi = 600,          
  PageSegmentationMode = 3
});

**Full Changelog**: https://github.com/ANcpLua/CreatePdf.NET/compare/v1.0.4...v1.1.0