web-dev-qa-db-ja.com

System.Drawingで円を描く

私は長方形を描くこのコードを持っています(MSペイントを作り直そうとしています)

 case "Rectangle":
               if (tempDraw != null)
                {
                    tempDraw = (Bitmap)snapshot.Clone();
                    Graphics g = Graphics.FromImage(tempDraw);
                    Pen myPen = new Pen(foreColor, lineWidth);
                    g.DrawRectangle(myPen, x1, y1, x2-x1, y2-y1);
                    myPen.Dispose();
                    e.Graphics.DrawImageUnscaled(tempDraw, 0, 0);
                    g.Dispose();
                }

しかし、円を描きたい場合はどうなりますか?

g.DrawRectangle(myPen, x1, y1, x2-x1, y2-y1);
18
Tony

代わりに DrawEllipse メソッドを試してください。

20

DrawCircleメソッドはありません。代わりにDrawEllipseを使用してください。円を描いたり塗りつぶしたりするグラフィック拡張メソッド(ここには示されていませんが)を備えた静的クラスがあります。これらはDrawEllipseFillEllipseのラッパーです:

public static class GraphicsExtensions
{
    public static void DrawCircle(this Graphics g, Pen pen,
                                  float centerX, float centerY, float radius)
    {
        g.DrawEllipse(pen, centerX - radius, centerY - radius,
                      radius + radius, radius + radius);
    }

    public static void FillCircle(this Graphics g, Brush brush,
                                  float centerX, float centerY, float radius)
    {
        g.FillEllipse(brush, centerX - radius, centerY - radius,
                      radius + radius, radius + radius);
    }
}

次のように呼び出すことができます。

g.FillCircle(myBrush, center X, centerY, radius);
g.DrawCircle(myPen, centerX, centerY, radius);

GDI +を使用して円を描く場合は、 DrawEllipse を使用する必要があります。

例はこちらです: http://www.websupergoo.com/helpig6net/source/3-examples/9-drawgdi.htm

6
Michael Todd

DrawEllipseを使用する必要があります。

//
// Summary:
//     Draws an ellipse defined by a bounding rectangle specified by coordinates
//     for the upper-left corner of the rectangle, a height, and a width.
//
// Parameters:
//   pen:
//     System.Drawing.Pen that determines the color, width,
//      and style of the ellipse.
//
//   x:
//     The x-coordinate of the upper-left corner of the bounding rectangle that
//     defines the ellipse.
//
//   y:
//     The y-coordinate of the upper-left corner of the bounding rectangle that
//     defines the ellipse.
//
//   width:
//     Width of the bounding rectangle that defines the ellipse.
//
//   height:
//     Height of the bounding rectangle that defines the ellipse.
//
// Exceptions:
//   System.ArgumentNullException:
//     pen is null.
public void DrawEllipse(Pen pen, int x, int y, int width, int height);
4
Rubens Farias

ボタンに円を描きたい場合、このコードは完全に使用されている可能性があります。それ以外の場合、他のコントロールに円を描きたい場合は、コントロールとイベントの名前を変更するだけです。ここのようにイベントボタンが呼び出されます。この円をグループボックスに描画する場合は、Groupboxイベントを呼び出します。よろしく

    public Form1()
    {
        InitializeComponent();

    }

    private void Form1_Load(object sender, EventArgs e)
    {
        this.button1.Location = new Point(108, 12);
       // this.Paint += new PaintEventHandler(Form1_Paint);
        this.button1.Paint += new PaintEventHandler(button1_Paint);
    }
    void button1_Paint(object sender, PaintEventArgs e)
    {
        Graphics g = this.button1.CreateGraphics();
        Pen pen = new Pen(Color.Red);
        g.DrawEllipse(pen, 10, 10, 20, 20);

    }





}
2
Malik Dilawar

このコードを使用すると、簡単に円を描くことができます... C#は素晴らしく、簡単です

public partial class Form1 : Form
{


public Form1()
    {
        InitializeComponent();
    }

  private void button1_Click(object sender, EventArgs e)
    {
        Graphics myGraphics = base.CreateGraphics();
        Pen myPen = new Pen(Color.Red);
        SolidBrush mySolidBrush = new SolidBrush(Color.Red);
        myGraphics.DrawEllipse(myPen, 50, 50, 150, 150);
    }
 }
1
MOKp
     private void DrawEllipseRectangle(PaintEventArgs e)
        {
            Pen p = new Pen(Color.Black, 3);
            Rectangle r = new Rectangle(100, 100, 100, 100);
            e.Graphics.DrawEllipse(p, r);
        }
     private void Form1_Paint(object sender, PaintEventArgs e)
        {
            DrawEllipseRectangle(e);
        }
0
Bokooo
PictureBox circle = new PictureBox();
circle.Paint += new PaintEventHandler(circle_Paint);        

void circle_Paint(object sender, PaintEventArgs e)
        {
            e.Graphics.DrawEllipse(Pens.Red, 0, 0, 30, 30);
        }
0