Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

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.v21.1.dll

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

Note

Set the RenderingEngine property to Skia to enable this method on Azure Web Apps, Linux, or Mac OS. To use the Skia rendering engine, add a reference to the DevExpress.Pdf.SkiaRenderer package or the DevExpress.Pdf.SkiaRenderer.v21.1 library reference with the SkiaSharp package (v1.68 if you use .NET Framework 4.5 and v2.80 for .NET Standard).

See Also