Hi,
Hi there,
Thanks for your inquiry. Aspose.Words support PDF 1.5, PDF/A-1a and PDF/A-1b standards compliance level. Could you please share your input document along with code which you are using to convert Word document to Pdf? I will investigate the issue and provide you more information about your query.
-
Save doc to memory stream by using PdfSaveOptions:
var _options = new Aspose.Words.Saving.PdfSaveOptions();
_options.CustomPropertiesExport = Aspose.Words.Saving.PdfCustomPropertiesExport.Standard;
var strm = new System.IO.MemoryStream();
doc.Save(strm, _options);
strm.Position = 0; -
Load pdf document from the stream:
var pdf = new Aspose.Pdf.Document(strm); -
Convert pdf document into PDF/A-3b:
using (MemoryStream ms = new MemoryStream())
{
pdf.Convert(ms, Aspose.Pdf.PdfFormat.PDF_A_3B, Aspose.Pdf.ConvertErrorAction.Delete);
}
Hi,
Resulting PDF/A attached
Hi,
Hi,
Hi,velaskec:
Hi,Does this version http://www.aspose.com/community/files/51/.net-components/aspose.pdf-for-.net/entry632625.aspx (PDFNEWNET-38127 PDF to PDF/A - Resultant file is not compliant)fix this issue?