Hi.
I created a picture pixel by pixel from a file that I created.
I created one-pixel bitmaps (Bitmap bmp(1,1)) and drew them with DrawImageUnscaled method.
But it is not antialiased. How can I antialias the image? I mean whole of that.
Thanks :-)
Loading

Majid KamaliPosted Jan 3, 2011, 4:28 AM
Gomathi PalaniswamyPosted Jan 3, 2011, 12:14 AM
try like this,
Graphics g = this.CreateGraphics();
g.SmoothingMode = SmoothingMode.AntiAlias;
g.DrawLine(Pens.Black, 0, 0, 12, 8);