←Select platform

ConvertToPDFA Method

Summary
Converts the file associated with this PDFFile object to PDF/A.
Syntax
C#
C++/CLI
Java
Python
public void ConvertToPDFA( 
   string destinationFileName 
) 
public void convertToPDFA( 
   java.lang.String string 
); 
public: 
void ConvertToPDFA(  
   String^ destinationFileName 
)  
def ConvertToPDFA(self,destinationFileName): 

Parameters

destinationFileName
Name of the destination PDF file to be created. If the value of this parameter is null, then the filename set in FileName will be updated.

Remarks

To use this method, associate the PDFFile object with a valid PDF filename and optional password. Do this by either using the PDFFile(string fileName) or PDFFile(string fileName, string password) constructors or set the filename and optional password directly by setting the FileName and Password properties. It is not necessary to call Load before using this method.

This method will use the following properties of the PDFFile object:

  • DocumentProperties. If the value of this property is null, then default properties will be used.

The following properties are not used by this method:

This method allows a quick way to convert a PDF file to PDF/A. To convert a PDF file to any version, use Convert.

Example

This example will convert a PDF file to PDF/A.

C#
Java
using Leadtools.WinForms; 
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Controls; 
using Leadtools.Drawing; 
using Leadtools.ImageProcessing; 
using Leadtools.Pdf; 
using Leadtools.Svg; 
 
 
public void PDFFileConvertToPDFAExample() 
{ 
   string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf"); 
   string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_pdfa.pdf"); 
 
   // Show the source file type 
   PDFFileType fileType = PDFFile.GetPDFFileType(sourceFileName, true); 
   Console.WriteLine("Source file is {0}", fileType); 
 
   PDFFile pdfFile = new PDFFile(sourceFileName); 
   pdfFile.ConvertToPDFA(destinationFileName); 
 
   // Show the converted file type, it should be PDF 1.4, and when you open it in 
   // in Adobe Acrobat, it should open as PDF/A 
   fileType = PDFFile.GetPDFFileType(destinationFileName, true); 
   Console.WriteLine("Destination file is {0}", fileType); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.ByteArrayInputStream; 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.FileNotFoundException; 
import java.io.FileOutputStream; 
import java.io.FileReader; 
import java.io.IOException; 
import java.io.InputStream; 
import java.nio.file.Files; 
import java.nio.file.Paths; 
import java.nio.file.StandardCopyOption; 
import java.util.ArrayList; 
import java.util.Date; 
import java.util.List; 
import java.util.Scanner; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.pdf.*; 
 
 
public void pdfFileConvertToPDFAExample() { 
 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   String sourceFileName = combine(LEAD_VARS_IMAGES_DIR, "Leadtools.pdf"); 
   String destinationFileName = combine(LEAD_VARS_IMAGES_DIR, "LEAD_pdfa.pdf"); 
 
   // Show the source file type 
   PDFFileType fileType = PDFFile.getPDFFileType(sourceFileName, true); 
   System.out.printf("Source file is %s%n", fileType, toString()); 
 
   PDFFile pdfFile = new PDFFile(sourceFileName); 
   pdfFile.convertToPDFA(destinationFileName); 
 
   // Show the converted file type, it should be PDF 1.4, and when you open it in 
   // in Adobe Acrobat, it should open as PDF/A 
   fileType = PDFFile.getPDFFileType(destinationFileName, true); 
   System.out.printf("Destination file is %s%n", fileType.toString()); 
 
   assertTrue(fileType == PDFFileType.PDF14); 
 
} 
Requirements

Target Platforms

See Also

Reference

PDFFile Class

PDFFile Members

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

Leadtools.Pdf Assembly

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