CreatePdf.NET v1.1.0
Stream-based PDF Processing
- Added
Pdf.Load(stream) - Returns a
PdfReaderinstance - 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