Well I can edit JPG files perfectly fine, but I tried a GIF file and I get this error:
A Graphics object cannot be created from an image that has an indexed pixel format.
I'm obviously trying to create a graphics object from the GIF image.

I've tried loading the GIF by using both of these methods:
dim img as image = image.fromfile(gifFile)
dim bmp as new bitmap(gifFile)

both will result the same. I'm wondering how I can "convert" the indexed format to a normal image so it can be edited with the Graphics class. There should certainly be a way, but I'm clueless