End Google Ads 201810 - BS.net 01 --> Hello I'm using the below code to color a picture but it is pretty slow is there a way to do it faster?
Thanks in advance.

Bitmap Turn(Bitmap pic)
{
Bitmap newpic = new Bitmap(pic.Width, pic.Height);
for (int i = 0; i < pic.Width; i++)
{
for (int j = 0; j < pic.Height; j++)
{
Color color = pic.GetPixel(i, j);
newpic.SetPixel(i, j, Color.FromArgb(123, 46, 125));
}
}
return newpic;
}