Hi,
I have a PDF and I try to covert it to a regular PDF using Aspose.PDF in C# .net.
The conversion process seems to be successful, but when I open the converted file using Adobe Acrobat Reader (ver. 2023.008.20470), I encounter the following error:
Error.png (4.6 KB)
Could you please tell me what might be causing this issue?
Here is the code I use:
public void ToPdf()
{
var document = new Aspose.Pdf.Document(SourcePath);
document.Save(TargetPath, Aspose.Pdf.SaveFormat.Pdf);
}
input.pdf (795.3 KB)
output (23.9).pdf (792.0 KB)
output (24.1).pdf (876.2 KB)