Using the bitblt function, I have created a very basic program that copies an image from one form.picturebox to another and inverts it.
Is there any way to save the new image?
Printable View
Using the bitblt function, I have created a very basic program that copies an image from one form.picturebox to another and inverts it.
Is there any way to save the new image?
Code:'BitBlt code here
Picture2.Refresh
SavePicture Picture2.Image, "C:\MyFile.bmp"
Also, make sure that the AutoRedraw property is set to True.