Hi, actually i have a problem, in my code. I’m trying to change from A4 to Letter Size using the following code
Aspose.Pdf.Document pdf = new Aspose.Pdf.Document(pdfInput);
foreach (Aspose.Pdf.Page pdfPage in pdf.Pages)
{
pdfPage.SetPageSize(610.997, 790.702);
}
pdf.Save(pdfOutput);
Finaly, the file have for every page, a letter size, but, the content, of the pages, is not correct, because (too large, or too small).
so, i think, i need resize, the content,
How can i do this?
Thanks in advance
Luis