程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#以動畫方式顯示圖像(7)

C#以動畫方式顯示圖像(7)

編輯:關於C語言

八. 以從上向下拉伸的方式顯示圖像

原理: 將圖像的寬度不變每次顯示圖像的一部分, 直到將圖片完全顯示.

代碼:

以從上向下拉伸方式顯示圖像

Code

[copy to clipboard]

CODE:

private void button1_Click(object sender, EventArgs e)
{
//以從上向下拉伸方式顯示圖像
try
{
int width = this.MyBitmap.Width; //圖像寬度
int height = this.MyBitmap.Height; //圖像高度
Graphics g = this.panel1.CreateGraphics();
g.Clear(Color.Gray); //初始為全灰色
for (int y = 1; y <= height; y++)
{
Bitmap bitmap=MyBitmap.Clone (new Rectangle(0,0,width ,y),
System.Drawing .Imaging.PixelFormat .Format24bppRgb );
g.DrawImage (bitmap,0,0);
System.Threading.Thread.Sleep(10);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "信息提示");
}
}

九. 以從左向右拉伸的方式顯示圖像

原理: 將圖像的高度不變每次顯示圖像的一部分, 直到將圖片完全顯示

代碼:

以從左向右拉伸方式顯示圖像

Code

[copy to clipboard]

CODE:

private void button1_Click(object sender, EventArgs e)
{//以從左向右拉伸方式顯示圖像try
{
int width = this.MyBitmap.Width; //圖像寬度
int height = this.MyBitmap.Height; //圖像高度
Graphics g = this.panel1.CreateGraphics();g.Clear(Color.Gray); //初始為全灰色
for (int x = 1; x <= width; x++)
{
Bitmap bitmap=MyBitmap.Clone (new Rectangle
(0,0,x ,height),
System.Drawing .Imaging.PixelFormat .Format24bppRgb );
g.DrawImage (bitmap,0,0);
System.Threading.Thread.Sleep(10);
}
}
catch (Exception ex){MessageBox.Show(ex.Message, "信息提示");
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved