Klass TiffConverter

Info

Representerar Documentize.TiffConverter-plugin. Används för att konvertera PDF-dokument till TIFF-format.

public sealed class TiffConverter

Arv

objectTiffConverter

Arvda medlemmar

Exempel

Exemplet demonstrerar hur man konverterar PDF-dokument till TIFF-format.

// skapa TiffConverter
var plugin = new TiffConverter();
// skapa PdfToTiffOptions-objekt för att ställa in instruktioner
var opt = new PdfToTiffOptions();
// lägga till filväg för inmatning
opt.AddInput(new FileDataSource(inputPath));
// ställa in filväg för utmatning
opt.AddOutput(new DirectoryDataSource(outputPath));
// utföra processen
plugin.Process(opt);

Konstruktörer

TiffConverter()

public TiffConverter()

Metoder

Process(PdfToTiffOptions)

Startar Documentize.TiffConverter-processen med angivna parametrar.

public ResultContainer Process(PdfToTiffOptions options)

Parametrar

  • options PdfToTiffOptions: Ett options-objekt som innehåller instruktioner för Documentize.TiffConverter.

Returnerar

ResultContainer : Ett ResultContainer-objekt som innehåller resultatet av operationen.

Namespace: Documentize Assembly: Documentize.dll

 Svenska