Please, I am generating several images in a single PDF and it is running correctly. What I can not do is leave the A4 size images as they get very big, 80% of the standard size. How can I decrease to fit the A4? the code is below. Thankful
iTextSharp.text.Document Doc = new iTextSharp.text.Document(iTextSharp.text.PageSize.A4, 80, 80, 80, 80);
//Salve o documento
string PDFOutput = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "C:\Users\Usuario\Desktop\imagensParaPDF\Output.pdf");
PdfWriter writer = PdfWriter.GetInstance(Doc, new FileStream(PDFOutput, FileMode.Create, FileAccess.Write, FileShare.Read));