Estoy tratando de agregar una imagen a un pdf usando itextsharp, independientemente del tamaño de la imagen, siempre parece estar asignado a un tamaño diferente dentro del pdf.¿Cómo calcular el tamaño de imagen correcto en formato PDF utilizando itextsharp?
La imagen de añado es 624x500 píxeles (DPI: 72):
alt text http://www.freeimagehosting.net/uploads/727711dc70.png
Y aquí es una pantalla del pdf de salida:
alt text http://www.freeimagehosting.net/uploads/313d49044d.png
Y aquí es como yo creó el documento:
Document document = new Document();
System.IO.MemoryStream stream = new MemoryStream();
PdfWriter writer = PdfWriter.GetInstance(document, stream);
document.Open();
System.Drawing.Image pngImage = System.Drawing.Image.FromFile("test.png");
Image pdfImage = Image.GetInstance(pngImage, System.Drawing.Imaging.ImageFormat.Png);
document.Add(pdfImage);
document.Close();
byte[] buffer = stream.GetBuffer();
FileStream fs = new FileStream("test.pdf", FileMode.Create);
fs.Write(buffer, 0, buffer.Length);
fs.Close();
An y idea sobre cómo calcular el tamaño correcto?
Ya probé Scale Absoluto y la imagen aún se muestra con dimensiones incorrectas.