Verify(String) Метод (PdfDocumentVerifier)
В этом разделе
Проверяет указанный PDF документ.
Синтаксис
'Declaration
Public Overloads Function Verify( _
ByVal As System.String _
) As Boolean
public bool Verify(
System.String
)
public: bool Verify(
System.String
)
public:
bool Verify(
System.String
)
Parameters
- filename
- Имя файла PDF документа.
Return Value
True, если проверка пройдена; в противном случае, false.
Пример
Вот пример, показывающий, как проверить PDF документ на соответствие спецификации PDF/A-1b:
''' <summary>
''' Verifies a PDF document to conformance with PDF/A-1b specification.
''' </summary>
''' <param name="pdfFilename">The filename of PDF document.</param>
Public Shared Sub VerifyDocumentToPdfA1b(pdfFilename As String)
Dim verifier As New Vintasoft.Imaging.Pdf.Processing.PdfA.PdfA1bVerifier()
System.Console.WriteLine("Verification...")
If verifier.Verify(pdfFilename) Then
System.Console.WriteLine("Document conforms to PDF/A-1b.")
Else
System.Console.WriteLine("Document does not conform to PDF/A-1b.")
End If
End Sub
/// <summary>
/// Verifies a PDF document to conformance with PDF/A-1b specification.
/// </summary>
/// <param name="pdfFilename">The filename of PDF document.</param>
public static void VerifyDocumentToPdfA1b(string pdfFilename)
{
Vintasoft.Imaging.Pdf.Processing.PdfA.PdfA1bVerifier verifier =
new Vintasoft.Imaging.Pdf.Processing.PdfA.PdfA1bVerifier();
System.Console.WriteLine("Verification...");
if (verifier.Verify(pdfFilename))
System.Console.WriteLine("Document conforms to PDF/A-1b.");
else
System.Console.WriteLine("Document does not conform to PDF/A-1b.");
}
Требования
Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5
Смотрите также