TIFF Export

The PDF Creator .NET Library enables you to create secure PDF documents on the fly and to view, print and process existing PDF documents. If you have any questions about PDF Creator .Net, please post them here.
Post Reply
SoenkeLuetjohann
Posts: 3
Joined: Thu Mar 09 2006
Location: Karlsruhe, Germany
Contact:

TIFF Export

Post by SoenkeLuetjohann »

Hi,

I wonder if you could tell me what values are usable for tiffFormat in the function ExportToTiff. This function is not described in the documentation!

Regards,
Sönke
Jose
Amyuni Team
Posts: 553
Joined: Tue Oct 01 2002
Contact:

Post by Jose »

Hello,

Below is information on how to implement the ExportToTiff() method.

Hope this helps?

'FileName()
'name of the file with .tif extension to export to.

'Resolution()
'72, 150, 300, 600

'Options()

'0 = represents no compression
'1 to 9 = represents the Jpeg Compression level to use. Note: This not supported by all TIFF viewers
'10 = represents CCITT fax compression

'ExportToTiff(ByVal filename As String, ByVal resolution As System.UInt32, ByVal tiffFormat As System.UInt32) As Boolean

.Document.ExportToTiff("c:\temp\sample.tif", Convert.ToUInt32(150), Convert.ToUInt32(0))
SoenkeLuetjohann
Posts: 3
Joined: Thu Mar 09 2006
Location: Karlsruhe, Germany
Contact:

Post by SoenkeLuetjohann »

Hi,

thank you for this information. Is there no option to export to a tiff file with lossless compression?

Kind regards,
Sönke
Post Reply