Hi Caleb,
Thank you for contacting Syncfusion support.
We can insert an image in a PDF document with the specified size. Please refer the below code snippet for more details,
|
//Load the image from the stream
PdfBitmap image = new PdfBitmap(imageStream);
//Draw the image with the given width and height.
page.graphics.DrawImage(image, new PointF(0, 0), new SizeF(400, 400)); |
Please refer the below UG documentation link(Working with images) for your reference,
Please try the above code snippet in your end and let us know whether it solves the issue.
Regards,
Sowmiya L