Is there a way of converting jpg & gif files in to bmp format??
Printable View
Is there a way of converting jpg & gif files in to bmp format??
Yep. Use this:You can use this for GIFs, too. The first string is the path of the JPEG, and the 2nd is where you want to save the bitmap.VB Code:
Picture1.Picture = LoadPicture("Path\To\File.jpg") SavePicture Picture1.Picture, "Path\To\File.bmp"
Thanks Sastraxi...
I actually found that in another post shortly after I posted my first message.