Hi ramco1917,
Use Printer.PaintPicture Method for printing the contents of an image file on a page.
First inherit the Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 namespace.
Then use the following code.
Dim pr As New Printer
pr.PaintPicture(Image1, 500, 500, 1000, 1000)
pr.EndDoc()
Reference: Printer.PaintPicture Method