从0.1开始学C#  
小女子要开始学习C#了,主要是网络编程和画图两方面。 以前只学过C,也没怎么编过程序, 故而这个标题。 学习过程中,把自己学习的东西总结一下。 希望偶尔路过的高人多多指教 谢谢!^_^

1 显示图片

主要命令:

Image.FromFile();

graphics.DrawImage(image);

Code

 

2 图像缩略图

主要命令:

image.GetThumbnailImage();

Code

 

3  创建图片文件

主要命令:

Metafile("filename",hdc)。

IntPtr hdc = graphics.GetHdc();

graphics2 = Graphics.FromImage(metaFile);

graphics2.DrawRectangle();

 

Code
posted on 2009-05-15 12:57  阿朵  阅读(1771)  评论(0编辑  收藏  举报