PrizmDoc Server .NET SDK

Show / Hide Table of Contents

Class TiffDestinationOptions

TIFF-specific conversion output options.

Inheritance
Object
TiffDestinationOptions
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Accusoft.PrizmDocServer.Conversion
Assembly: PrizmDocServerSDK.dll
Syntax
public class TiffDestinationOptions

Properties

ForceOneFilePerPage

Gets or sets a value indicating whether the output should be multiple single-page TIFFs, one file for each page of content (instead of a single TIFF with multiple pages). true if the output should be multiple TIFF files, one file for each page of content; false if the output should be a single TIFF file with multiple pages. The default value is false.

Declaration
public bool ForceOneFilePerPage { get; set; }
Property Value
Type Description
Boolean

MaxHeight

Gets or sets the maximum pixel height of the output TIFF(s), expressed as a CSS-style string, e.g. "600px". When specified, the output image is guaranteed to never be taller than the specified value and its aspect ratio will be preserved. This is useful if you need all of your output images to fit within a single row.

Declaration
public string MaxHeight { get; set; }
Property Value
Type Description
String

MaxWidth

Gets or sets the maximum pixel width of the output TIFF(s), expressed as a CSS-style string, e.g. "800px". When specified, the output image is guaranteed to never be wider than the specified value and its aspect ratio will be preserved. This is useful if you need all of your output images to fit within a single column.

Declaration
public string MaxWidth { get; set; }
Property Value
Type Description
String
Back to top © 2019-2020 Accusoft Corporation. All Rights Reserved.