Graphics.FromImage() returns a Graphics object. You need to change the last few lines of code to this:Dim bmp As New Bitmap(ModImg)
Dim g As Graphics = Graphics.FromImage(bmp)
g.DrawImage(bmp, New Rectangle(265, 10, 200, 200), 0, 0, bmp.Width, bmp.Height, GraphicsUnit.Pixel, Attrib)
bmp.Save("c:\blah.bmp")