MultiPageLayout.TiffFrames

MultiPageLayout TiffFrames method. Creates a layout where each page is rendered as a separate frame in a multiframe TIFF image. Applicable only to TIFF image formats.

MultiPageLayout.TiffFrames method

Creates a layout where each page is rendered as a separate frame in a multi-frame TIFF image. Applicable only to TIFF image formats.

public static MultiPageLayout TiffFrames()

Examples

Shows how to export document to tiff with each page rendered as a separate tiff frame.

ImageSaveOptions imgSaveOptions = new ImageSaveOptions(SaveFormat.Tiff);
imgSaveOptions.PageLayout = MultiPageLayout.TiffFrames();

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "MultiPageLayout.Vertical.tiff", imgSaveOptions)
    .Execute();

See Also