Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PdfDocumentProcessor.CreateTiff(String, IEnumerable<Int32>, Single) Method

Exports PDF pages to a multi-page TIFF image with a predefined resolution and saves the image to a file.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Docs.v24.2.dll

NuGet Package: DevExpress.Document.Processor

#Declaration

public void CreateTiff(
    string fileName,
    IEnumerable<int> pageNumbers,
    float imageDpi
)

#Parameters

Name Type Description
fileName String

A file name (including the full path) for the created TIFF image.

pageNumbers IEnumerable<Int32>

A list of page numbers.

imageDpi Single

An image’s DPI.

#Remarks

Warning

The CreateTiff method is not available in .NET MAUI applications. An exception is thrown on an attempt to call this method.

See Also