Hello,
are there any limitations regarding dimensions of a PDF document created with Aspose.Net.PDF?
I’m trying to convert a very large XPS Document into a PDF using the following code.
using (var pdf = new Document(source, new XpsLoadOptions()))
{
pdf.Save(file);
}
The XPS document itself is about 130 MB file size (containing many images) and the dimensions are about 180.000 x 80.000 units. I did a test which takes very very long time with an average memory usage of about 1 GB ram and about 35% CPU consumption on an iCore 5. The result is a blank page.
If I know the limitations, maybe I can scale down the XPS to the maximum dimension.
Thanks