←Select platform

OutputAnnotationFiles Property

Summary

Output annotation files generated by this conversion job.

Syntax
C#
C++/CLI
Java
Python
public IList<string> OutputAnnotationFiles { get; } 
public:  
   property System::Collections::Generic::IList<String^>^ OutputAnnotationFiles 
   { 
      System::Collections::Generic::IList<String^>^ get() 
   } 
public List<String> getOutputAnnotationFiles() 
OutputAnnotationFiles # get  (DocumentConverterJob) 

Property Value

A list that contains the full paths of all output annotation files generated by this conversion job (if any).

Remarks

Refer to OutputFiles for more information.

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 DocumentConverterOutputFilesExample() 
{ 
   using (DocumentConverter documentConverter = new DocumentConverter()) 
   { 
      var inFile = Path.Combine(ImagesPath.Path, @"Leadtools.pdf"); 
      var format = DocumentFormat.Svg; 
      // We will create SVG files. This is not a multi-page format and the converter will 
      // create the files in the output directory ... 
      var outDir = Path.Combine(ImagesPath.Path, @"output"); 
      // Using the page numbering template. Change to to output page1.svg, page2.svg, etc. 
      documentConverter.Options.PageNumberingTemplate = "page(##page##).##extension##"; 
      var outFile = Path.Combine(outDir, "file.svg"); 
      var jobData = DocumentConverterJobs.CreateJobData(inFile, outFile, format); 
 
      var job = documentConverter.Jobs.CreateJob(jobData); 
      documentConverter.Jobs.RunJob(job); 
 
      if (job.Status == DocumentConverterJobStatus.Success) 
      { 
         Console.WriteLine("Success"); 
 
         // Show the output files, these should be page1.svg, page2.svg, etc all in outDir 
         Console.WriteLine("All files generated:"); 
         foreach (var file in job.OutputFiles) 
            Console.WriteLine(file); 
 
         Console.WriteLine("Document files generated:"); 
         foreach (var file in job.OutputDocumentFiles) 
            Console.WriteLine(file); 
 
         Console.WriteLine("Extra document files generated:"); 
         foreach (var file in job.OutputDocumentExtraFiles) 
            Console.WriteLine(file); 
 
         Console.WriteLine("Annotation files generated:"); 
         foreach (var file in job.OutputAnnotationFiles) 
            Console.WriteLine(file); 
      } 
      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.