It's very strange and I've not idea why it happens.
Every time i open a pdf document having PageSize property setted to Unknow value, it will be trunced on right side after saving.
For instance, when I use the following simple instruction
Code:
PdfDocument document = PdfReader.Open("filename");
document.Save("newFilename");
if they are applied to some pdf doc with Unknow page size, my final doc will be appear truncated.
The only way I know to avoid that issue is import all pages from first doc to second one, but it isn't what I want because I need to modify source doc.
It seeme to be a bug.
Any suggestion will be appreciated..