-
Hi.
I'm opening an image file (*.bmp) in a picturebox, and add a string to the image. After this the image will be saved using the savepicture command. I want the image and the string to be saved. Does anyone know how to do this?
I know I have to add text to the image and not doing this by simply use the image1.print command.
Please help me out.
GreetZ,
Michel Smit
-
Code:
Picture1.AutoRedraw = True
Picture1.Print "Textgoeshere"
Picture1.Picture = Picture1.Image
SavePicture Picture1.Picture, "filenamegoeshere"