原理: 主要使用了 Graphics 類提供的 RotateTransform() 方法對圖像進行旋轉.
代碼:
以任意角度旋轉顯示圖像
Code
[copy to clipboard]
CODE:
private void button1_Click(object sender, EventArgs e)
{
//以任意角度旋轉顯示圖像
Graphics g = this.panel1.CreateGraphics();
float MyAngle = 0;//旋轉的角度
while (MyAngle < 360)
{
TextureBrush MyBrush = new TextureBrush(MyBitmap);
this.panel1.Refresh();
MyBrush.RotateTransform(MyAngle);
g.FillRectangle(MyBrush, 0, 0, this.ClientRectangle.Width, this.ClIEntRectangle.Height);
MyAngle += 0.5f;
System.Threading.Thread.Sleep(50);
}
}
十一. 以橢圓的方式顯示圖像
原理: 主要使用了 Graphics 類提供的 FillEllipse() 方法和 TextureBrush() 方法.
代碼:
橢圓顯示圖像
Code
[copy to clipboard]
CODE:
private void button1_Click(object sender, EventArgs e)
{
//橢圓顯示圖像
this.panel1.Refresh();
Graphics g = this.panel1.CreateGraphics();
TextureBrush MyBrush = new TextureBrush(MyBitmap);
g.FillEllipse(MyBrush, this.panel1.ClIEntRectangle);
}