Class JpegConverter

Info

Represents Documentize.JpegConverter plugin. Used to convert PDF documents into JPEG format.

public sealed class JpegConverter

Inheritance

objectJpegConverter

Inherited Members

Examples

The example demonstrates how to convert PDF document into JPEG format.

// create JpegConverter
var plugin = new JpegConverter();
// create PdfToJpegOptions object to set instructions
var opt = new PdfToJpegOptions();
// 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

JpegConverter()

public JpegConverter()

Methods

Process(PdfToJpegOptions)

Starts the Documentize.JpegConverter processing with the specified parameters.

public ResultContainer Process(PdfToJpegOptions options)

Parameters

  • options PdfToJpegOptions: An options object containg instructions for the Documentize.JpegConverter.

Returns

ResultContainer : An ResultContainer object containg the result of the operation.

Namespace: Documentize Assembly: Documentize.dll

 English