Guys
When generating a PDF using aspose.pdf-3.3.jdk6.jar sometimes margins are ignored and elements that should be located at the body overlaps the footer
Using the attached data (data.xml)
We get the attached PDF (PdfOut.pdf)
You can see the problem in the attached picture (Capture.PNG)
Thanks in advance
PS: Here is the code we use to generate the PDF
import aspose.pdf.Pdf;
import java.io.FileInputStream;
Pdf pdf = new Pdf();
is = new FileInputStream(xmlPath);
pdf.bindXML(is, null);
pdf.save(output);
Our Environment:
Windows 7 64 bit
JDK 6 32bit (Also fails on 64bit)
I have tried using aspose.pdf-new-4.0.0.jar and the problem is still reproducible there