Converts the file associated with this PDFFile object to PDF/A.
public void ConvertToPDFA(string destinationFileName)
Public Sub ConvertToPDFA( _ByVal destinationFileName As String _)
public:void ConvertToPDFA(String^ destinationFileName)
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.
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:
The following properties are not used by this method:
SecurityOptions. You cannot create encrypted PDF/A files
CompatibilityLevel. Since it is implied a PDF/A version will be generated
This method allows a quick way to convert a PDF file to PDF/A. To convert a PDF file to any version, use Convert.
This example will convert a PDF file to PDF/A.
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.PdfImports Leadtools.WinFormsImports Leadtools.SvgImports Leadtools.ImageProcessingPublic Sub PDFFileConvertToPDFAExample()Dim sourceFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Leadtools.pdf")Dim destinationFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD_pdfa.pdf")' Show the source file typeDim fileType As PDFFileType = Pdf.PDFFile.GetPDFFileType(sourceFileName, True)Console.WriteLine("Source file is {0}", fileType)Dim pdfFile As 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/AfileType = pdfFile.GetPDFFileType(destinationFileName, True)Console.WriteLine("Destination file is {0}", fileType)End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.Controls;using Leadtools.Drawing;using Leadtools.ImageProcessing;using Leadtools.Pdf;using Leadtools.Svg;using Leadtools.WinForms;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 typePDFFileType 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/AfileType = PDFFile.GetPDFFileType(destinationFileName, true);Console.WriteLine("Destination file is {0}", fileType);}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
|
Products |
Support |
Feedback: ConvertToPDFA Method - Leadtools.Pdf |
Introduction |
Help Version 19.0.2017.3.22
|

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.