|
Image.Draw(new CircleF(new PointF(x, y), radius), new Rgb(r, g, b), 0);
|
|
Image.Draw(new CircleF(new PointF(x, y), radius), new Rgb(r, g, b), 0);
|
|
|
|
+ public void drawRectangle(int x, int y, int width, int height, byte r, byte g, byte b, int thichness = 0)
|
|
|
|
+ Image.Draw(new Rectangle(x, y, width, height), new Rgb(r, g, b), thichness);
|