Graphics on indexed image

Refering to this, it can be solved by creating a blank bitmap with the same dimensions and the correct PixelFormat and the draw on that bitmap. // The original bitmap with the wrong pixel format. // You can check the pixel format with originalBmp.PixelFormat Bitmap originalBmp = (Bitmap)Image.FromFile(“YourFileName.gif”); // Create a blank bitmap with the … Read more