C# 图像操作1

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

你可能感兴趣的:(C#)