Determines if the specified file is PDF/A.
public static bool IsPdfA(string fileName)
public static boolean isPdfA(java.lang.String string);
fileName
The name of the PDF file.
true if the specified file is PDF/A; otherwise, false.
This method checks whether the file claims to be PDF/A. The engine only checks if the file claims compliance with PDF/A standard and does not perform any validation.
This example will save a PDF file as a normal PDF first, then as PDF/A and verifies the claim.
using Leadtools;using Leadtools.Codecs;using Leadtools.Controls;using Leadtools.Drawing;using Leadtools.ImageProcessing;using Leadtools.Pdf;using Leadtools.Svg;using Leadtools.WinForms;public static void IsPdfAExample(){// A normal non-PDFA file.string sourceFile = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf");// The destination filestring targetFile = Path.Combine(LEAD_VARS.ImagesDir, "Out.pdf");File.Copy(sourceFile, targetFile);// Check the original file, it should not be PDF/Abool isPdfA = PDFFile.IsPdfA(targetFile);Debug.Assert(!isPdfA);// Check using PDFDocument classusing (var pdfDocument = new PDFDocument(targetFile)){isPdfA = pdfDocument.IsPdfA;Debug.Assert(!isPdfA);}// Convert it to PDF/APDFFile pdfFile = new PDFFile(targetFile);pdfFile.ConvertToPDFA(null);isPdfA = PDFFile.IsPdfA(targetFile);Debug.Assert(isPdfA);// Check using PDFDocument classusing (var pdfDocument = new PDFDocument(targetFile)){isPdfA = pdfDocument.IsPdfA;Debug.Assert(isPdfA);}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.PdfImports Leadtools.WinFormsImports Leadtools.SvgImports Leadtools.ImageProcessingPublic Shared Sub IsPdfAExample()' A normal non-PDFA file.Dim sourceFile As String = Path.Combine(LEAD_VARS.ImagesDir, "Leadtools.pdf")' The destination fileDim targetFile As String = Path.Combine(LEAD_VARS.ImagesDir, "Out.pdf")File.Copy(sourceFile, targetFile)' Check the original file, it should Not be PDF/ADim isPdfA As Boolean = PDFFile.IsPdfA(targetFile)Debug.Assert(Not isPdfA)' Check using PDFDocument classUsing pdfDocument As New PDFDocument(targetFile)isPdfA = pdfDocument.IsPdfADebug.Assert(Not isPdfA)End Using' Convert it to PDF/ADim pdfFileObj As New PDFFile(targetFile)pdfFileObj.ConvertToPDFA(Nothing)isPdfA = PDFFile.IsPdfA(targetFile)Debug.Assert(isPdfA)' Check using PDFDocument classUsing pdfDocument As New PDFDocument(targetFile)isPdfA = pdfDocument.IsPdfADebug.Assert(isPdfA)End UsingEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
