Available for: UI for ASP.NET MVC | UI for ASP.NET AJAX | UI for Blazor | UI for WPF | UI for WinForms | UI for Silverlight | UI for Xamarin | UI for WinUI | UI for ASP.NET Core | UI for .NET MAUI

Overview

This article explains the PDF Stream Writer functionality - how it works and how you can use it.

Telerik Document Processing Ninja image

The PdfStreamWriter is part of Telerik Document Processing, a professional grade .NET library for creating and manipulating PDF, Word, XLSX and HTML files. To try it out sign up for a free 30-day trial.

What is PdfStreamWriter?

The API of PdfStreamWriter exposes a functionality that provides option for exporting PDF files with unmatched performance and minimized memory footprint.

The key for the memory efficiency is that the writer writes the PDF content directly to a stream without creating and preserving the PDF document model in the memory. The performance efficiency is achieved by reading PDF page content from existing PDF files without decoding or parsing the existing page content. The read content is then written unmodified directly into the new file stream. Although the existing PDF page content is not modified, it may be positioned differently into the new PDF file as well as combined with some other existing or newly generated PDF page content.

PdfStreamWriter can help you achieve the following scenarios when creating the pages of the new PDF file:

  • Merge pages from different PDF documents.

  • Split PDF document pages.

  • Add and position page content from existing PDF files.

  • Add and position page content from newly generated RadFixedPage instances.

  • Merge and position content from existing PDF pages and generated RadFixedPage instances onto a single page in the newly written PDF file stream.

The XAML SDK repository on GitHub contains examples showing the capabilities of PdfStreamWriter:

PdfStreamWriter Structure

There are several classes responsible for writing the different parts of a PDF file.

  • PdfStreamWriter: The root class, responsible to write the PDF file content to a Stream.

    • WritePage() methods: The WritePage() methods of PdfStreamWriter write a PDF page directly into the PDF file Stream. There are two overloads allowing you to write either PdfPageSource or RadFixedPage.
  • PdfStreamWriterSettings: Provides options for customizing the exported PDF file. An instance of this class can be obtained through the Settings property of PdfStreamWriter. The provided customization properties are DocumentInfo, ImageQuality and WriteAnnotations.

  • PdfPageStreamWriter: This class is responsible for writing the PDF page content to the PDF file stream. An instance of this class can be created by calling the BeginPage() method of PdfStreamWriter.

    • WriteContent() methods: The WriteContent() methods of PdfPageStreamWriter allow you to write content to the current PDF page Stream. There are two overloads allowing to add content either from PdfPageSource or RadFixedPage.
  • PdfFileSource: Represents the content of an existing PDF file.

  • PdfPageSource: A class representing the page content of an existing PDF file. Instances of this class can be obtained using the Pages property of PdfFileSource.

PdfStreamWriter or PdfFormatProvider?

RadPdfProcessing provides two options for import and export - using PdfStreamWriter and through the PdfFormatProvider class. This section describes the benefits of the two approaches in different scenarios.

If you need to import a PDF document in order to add content to it and save it back, you can take advantage of the PdfStreamWriter API. Choosing this approach, you will gain a great performance with minimal memory usage as well as support for the majority of the PDF format features.

If the scenario requires you to read or modify the existing page content, you should use PdfFormatProvider to parse the required data. When working with PdfStreamWriter, the existing page content is preserved unmodified and you are only allowed to add elements below or above the existing content.

See Also

In this article