Class TiffConverter
Info
Represents Documentize.TiffConverter plugin. Used to convert PDF documents into TIFF format.
public sealed class TiffConverter
Inheritance
Inherited Members
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Examples
The example demonstrates how to convert PDF document into TIFF format.
// create TiffConverter
var plugin = new TiffConverter();
// create PdfToTiffOptions object to set instructions
var opt = new PdfToTiffOptions();
// add input file path
opt.AddInput(new FileDataSource(inputPath));
// set output file path
opt.AddOutput(new DirectoryDataSource(outputPath));
// perform the process
plugin.Process(opt);
Constructors
TiffConverter()
public TiffConverter()
Methods
Process(PdfToTiffOptions)
Starts the Documentize.TiffConverter processing with the specified parameters.
public ResultContainer Process(PdfToTiffOptions options)
Parameters
options
PdfToTiffOptions: An options object containg instructions for the Documentize.TiffConverter.
Returns
ResultContainer : An ResultContainer object containg the result of the operation.
Namespace: Documentize Assembly: Documentize.dll