I know this is probably so eay, but ...
I know through the API you can load an image, but does anyone know how to save an image, say created in a picture box, to disk. It is really bugging me!
Cheers
Printable View
I know this is probably so eay, but ...
I know through the API you can load an image, but does anyone know how to save an image, say created in a picture box, to disk. It is really bugging me!
Cheers
If you don't mind saving it as a BMP, then you don't need any API calls. VB's built-in SavePicture command does the trick ...
SavePicture Picture1.Image, "c:\myfolder\mypic.bmp"
If you want to save as JPEG, let me know and I can point you toward some websites that might help.
-Bryk