Hello,
we are using Aspose.Net.Pdf version 9.1.0.0 (licensed) to convert XPS documents (created within our application) into PDF. This works in most cases but some elements are rendered not correctly.
I've attached an example of a generated XPS and the result of the conversion to PDF using the following code, where source is a MemoryStream containing the XPS
using (var pdf = new Document(source, new XpsLoadOptions()))
{
pdf.Save(target);
}
As you can see, there are two errors:
1. Wrong drawn link symbol (foreground / background switched)
2. Grey background behind "Interaction" is not stretched to the right.
How can we workaround this issue?
Best regards,
Daniel