Hi, i need to create a 24 bits bitmap (resolution 100x100 pixels) using a unique RGB color and save the generated image to the disk. currently i use the SetPixel function , but it is extremely slow.
Bitmap Bmp = new Bitmap(width, height);
//...
//...
Bmp.SetPixel(x,y,Color.FromARGB(redvalue, greenvalue, bluevalue));
There is a faster method than setpixel?
Thanks in advance.