您好,登錄后才能下訂單哦!
在Windows Forms中,C#使用GDI+進行繪圖和圖像處理
繪圖基礎:
圖像處理:
以下是一個簡單的示例,演示如何在Windows Forms中使用C#和GDI+繪制一個矩形并填充顏色:
using System;
using System.Drawing;
using System.Windows.Forms;
namespace GdiPlusExample
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
// 創建Graphics對象
Graphics g = e.Graphics;
// 創建Pen和Brush對象
Pen pen = new Pen(Color.Black, 2);
Brush brush = new SolidBrush(Color.Red);
// 繪制矩形
g.DrawRectangle(pen, 50, 50, 100, 100);
// 填充矩形
g.FillRectangle(brush, 50, 50, 100, 100);
}
}
}
這個示例將在窗體上繪制一個紅色填充的矩形。要運行此示例,請創建一個新的Windows Forms應用程序項目,然后將代碼添加到Form1類中。在窗體的Paint事件中調用Form1_Paint方法。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。