PdfPageEditor pEdit = new PdfPageEditor();
// Bind pdf file
pEdit.BindPdf(dataDir + @"" + name + ext);
Aspose.Pdf.PageSize pageSize = pEdit.PageSize;
pageSize.Width ==> -1 , pageSize.Height ===> -1
My question is:
I wanted to have a page size for a certain PDF, but what I got was -1 for each pageSize.Width and Height.
Is there anything I missed? Or I did wrong?
Thanks,