|
//Load the image
PdfBitmap bitmap = new PdfBitmap(path);
//Get the page size
SizeF pageSize = page.GetClientSize();
//Draw the image to the PDF page
page.Graphics.DrawImage(bitmap, new RectangleF(PointF.Empty,pageSize)); |