八. 以從上向下拉伸的方式顯示圖像
原理: 將圖像的寬度不變每次顯示圖像的一部分, 直到將圖片完全顯示.
代碼:
以從上向下拉伸方式顯示圖像
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, "信息提示");
}
}