Our
project uses a licensed version of Aspose. Just few days back our license has expired. We are in the process of re-newing the license.
Currently
I am working on a POC using Aspose.Word and Aspose.Pdf to check for the
generation of a PDF/A document. I generated the PDF/A document by
referring the Aspose documentation. As given in the documentation I have
also validated the file using the below code snippet
project uses a licensed version of Aspose. Just few days back our license has expired. We are in the process of re-newing the license.
Currently
I am working on a POC using Aspose.Word and Aspose.Pdf to check for the
generation of a PDF/A document. I generated the PDF/A document by
referring the Aspose documentation. As given in the documentation I have
also validated the file using the below code snippet
Aspose.Pdf.License lic = new Aspose.Pdf.License();
lic.SetLicense(@"D:\WordToPdf_AsposePoc\WordToPdf_AsposePoc
\WordToPdf_AsposePoc\ExternalLib\Aspose.Total.lic");
if (Aspose.Pdf.Document.IsLicensed)
{
Console.WriteLine("licensed");
}
inputPDF.Validate("validation-result-A1A.xml", PdfFormat.PDF_A_1A);
inputPDF.Convert("log.xml", PdfFormat.PDF_A_1A, ConvertErrorAction.Delete);
inputPDF.Save(file);
I have used the expired license. I was able to generate the PDF/A
document but only till 7 pages. The document got truncated while
generating the PDF/A file. I assume this problem of file truncation will
go once I use a valid license file.
The file has a blue coloured band on the top which displays the below text
"This file claims compliance with the PDF/A standard and has been opened read-only to prevent modification."
"This file claims compliance with the PDF/A standard and has been opened read-only to prevent modification."
Inspite of the validating the file, the Conformance of the PDF/A reads as below
Standard: PDF/A-1A
ISO Name : ISO 19005-1
Status: not yet verified.
Will this message of Status not verified go away after setting a
valid license file or Is there anything that I am missing on the code
front ?
Please advice.