PdfConverter.SaveAsTIFF

SaveAsTIFF(string)

Converts each pages of a pdf document to images and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile)
ParameterTypeDescription
outputFileStringThe file to save the TIFF image.

Examples

[C#]
PdfConverter converter = new PdfConverter();
converter.BindPdf(@"D:\Test\test.pdf");
converter.DoConvert();
converter.SaveAsTIFF(@"D:\Test\test.tiff");	

[Visual Basic]
Dim converter As PdfConverter =  New PdfConverter() 
converter.BindPdf("D:\Test\test.pdf")
converter.DoConvert()
converter.SaveAsTIFF(@"D:\Test\test.tiff")

See Also


SaveAsTIFF(string, CompressionType)

Converts each pages of a pdf document to images and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, CompressionType compressionType)
ParameterTypeDescription
outputFileStringThe output file.
compressionTypeCompressionTypeType of the compression.

Examples

[C#]
PdfConverter converter = new PdfConverter();
converter.BindPdf(@"D:\Test\test.pdf");
converter.DoConvert();
converter.SaveAsTIFF(@"D:\Test\test.tiff");
[Visual Basic]
Dim converter As PdfConverter =  New PdfConverter()
converter.BindPdf("D:\Test\test.pdf")
converter.DoConvert()
converter.SaveAsTIFF(@"D:\Test\test.tiff")

See Also


SaveAsTIFF(string, int, int)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, int imageWidth, int imageHeight)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.

See Also


SaveAsTIFF(string, PageSize)

Converts each pages of a pdf document to images with page size and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, PageSize pageSize)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
pageSizePageSizeThe page size of the image.

See Also


SaveAsTIFF(string, PageSize, TiffSettings)

Converts each pages of a pdf document to images with page size and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, PageSize pageSize, TiffSettings settings)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
pageSizePageSizeThe page size of the image.
settingsTiffSettingsSettings object that defines TIFF parameters.

See Also


SaveAsTIFF(string, int, int, CompressionType)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, int imageWidth, int imageHeight, 
    CompressionType compressionType)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.
compressionTypeCompressionTypeType of the compression.

See Also


SaveAsTIFF(string, int, int, TiffSettings)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, int imageWidth, int imageHeight, TiffSettings settings)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.
settingsTiffSettingsSettings object that defines TIFF parameters.

See Also


SaveAsTIFF(string, int, int, TiffSettings, IIndexBitmapConverter)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, int imageWidth, int imageHeight, TiffSettings settings, 
    IIndexBitmapConverter converter)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.
settingsTiffSettingsSettings object that defines TIFF parameters.
converterIIndexBitmapConverterExternal converter

See Also


SaveAsTIFF(Stream)

Converts each pages of a pdf document to images and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.

See Also


SaveAsTIFF(Stream, CompressionType)

Converts each pages of a pdf document to images and saves images to a single TIFF file.

public void SaveAsTIFF(Stream outputStream, CompressionType compressionType)
ParameterTypeDescription
outputStreamStreamThe output stream.
compressionTypeCompressionTypeType of the compression.

See Also


SaveAsTIFF(Stream, PageSize)

Converts each pages of a pdf document to images with page size and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, PageSize pageSize)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
pageSizePageSizeThe page size of the image.

See Also


SaveAsTIFF(Stream, PageSize, TiffSettings)

Converts each pages of a pdf document to images with page size and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, PageSize pageSize, TiffSettings settings)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
pageSizePageSizeThe page size of the image.
settingsTiffSettingsSettings object that defines TIFF parameters.

See Also


SaveAsTIFF(Stream, int, int)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, int imageWidth, int imageHeight)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.

See Also


SaveAsTIFF(Stream, int, int, CompressionType)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, int imageWidth, int imageHeight, 
    CompressionType compressionType)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.
compressionTypeCompressionTypeType of the compression.

See Also


SaveAsTIFF(Stream, int, int, TiffSettings)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, int imageWidth, int imageHeight, TiffSettings settings)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.
settingsTiffSettingsSettings object that defines TIFF parameters.

See Also


SaveAsTIFF(Stream, int, int, TiffSettings, IIndexBitmapConverter)

Converts each pages of a pdf document to images with dimensions, and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, int imageWidth, int imageHeight, TiffSettings settings, 
    IIndexBitmapConverter converter)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
imageWidthInt32The image width, the unit is pixel.
imageHeightInt32The image height, the unit is pixel.
settingsTiffSettingsSettings object that defines TIFF parameters.
converterIIndexBitmapConverterExternal converter

See Also


SaveAsTIFF(string, TiffSettings)

Converts each pages of a pdf document to images with and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, TiffSettings settings)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
settingsTiffSettingsSettings object that defines TIFF parameters.

See Also


SaveAsTIFF(string, TiffSettings, IIndexBitmapConverter)

Converts each pages of a pdf document to images with and saves images to a single TIFF file.

public void SaveAsTIFF(string outputFile, TiffSettings settings, IIndexBitmapConverter converter)
ParameterTypeDescription
outputFileStringThe file name to save the TIFF image
settingsTiffSettingsSettings object that defines TIFF parameters.
converterIIndexBitmapConverterExternal converter

See Also


SaveAsTIFF(Stream, TiffSettings)

Converts each pages of a pdf document to images and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, TiffSettings settings)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
settingsTiffSettingsSettings object that defines TIFF parameters.

See Also


SaveAsTIFF(Stream, TiffSettings, IIndexBitmapConverter)

Converts each pages of a pdf document to images and saves images to a single TIFF stream.

public void SaveAsTIFF(Stream outputStream, TiffSettings settings, IIndexBitmapConverter converter)
ParameterTypeDescription
outputStreamStreamThe stream to save the TIFF image.
settingsTiffSettingsSettings object that defines TIFF parameters.
converterIIndexBitmapConverterExternal converter

See Also