←Select platform

CreateJobData(LEADDocument,string,DocumentFormat) Method

Summary

Fills in a common document conversion job data for an input LEADDocument.

Syntax
C#
C++/CLI
Java
Python
public static DocumentConverterJobData createJobData(Document document, String outputDocumentFileName, DocumentFormat documentFormat) 

Parameters

document

Input document to convert.

outputDocumentFileName

Path to the output file to be generated by this conversion.

documentFormat

The output format.

Return Value

The newly initialized job data.

Remarks

This method fills in the necessary members required for a job data to be used in a document conversion. The result DocumentConverterJobData will be initialized as follows:

Member Description

Document

document

OutputDocumentFileName

outputDocumentFileName

DocumentFormat

documentFormat

The rest of the members are initialized to the following default values to mark them as "unused"

Member Description

RasterImageFormat

RasterImageFormat instead.

InputDocumentFileName

null

InputAnnotationsFileName

null

InputDocumentFirstPageNumber

1 (first page)

InputDocumentLastPageNumber

-1 (last page)

RasterImageBitsPerPixel

0 (default)

OutputAnnotationsFileName

null

JobName

null

UserData

null

AnnotationsMode

DocumentConverterAnnotationsMode.None

You can modify the values of DocumentConverterJobData such as JobName and UserData on the returned object before passing it to CreateJob.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Document.Writer; 
using Leadtools.Svg; 
using LeadtoolsExamples.Common; 
using Leadtools.Document; 
using Leadtools.Caching; 
using Leadtools.Annotations.Engine; 
using Leadtools.Ocr; 
using Leadtools.Document.Converter; 
using Leadtools.Annotations.Rendering; 
 
public void DocumentConverterJobsCreateJobData3Example() 
{ 
   using (DocumentConverter documentConverter = new DocumentConverter()) 
   { 
      var inFile = Path.Combine(ImagesPath.Path, @"Leadtools.doc"); 
      var outFile = Path.Combine(ImagesPath.Path, @"output.tif"); 
      var format = RasterImageFormat.Tif; 
      var jobData = DocumentConverterJobs.CreateJobData(inFile, outFile, format); 
      jobData.JobName = "conversion job"; 
 
      var job = documentConverter.Jobs.CreateJob(jobData); 
      documentConverter.Jobs.RunJob(job); 
 
      if (job.Status == DocumentConverterJobStatus.Success) 
      { 
         Console.WriteLine("Success"); 
      } 
      else 
      { 
         Console.WriteLine("{0} Errors", job.Status); 
         foreach (var error in job.Errors) 
         { 
            Console.WriteLine("  {0} at {1}: {2}", error.Operation, error.InputDocumentPageNumber, error.Error.Message); 
         } 
      } 
   } 
} 
Requirements

Target Platforms

Help Version 22.0.2023.5.10
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Document.Converter Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.