我今天想扩大图像,并举出以下例子:
Example #1 of http://www.codeproject.com/KB/GDI-plus/imageresize.aspx
经过几次测试,我撰写了以下法典:
static System.Drawing.Image Scale(System.Drawing.Image imgPhoto, int v_iPercent)
{
int destWidth = (int)(imgPhoto.Width * v_iPercent / 100.0);
int destHeight = (int)(imgPhoto.Height * v_iPercent / 100.0);
Bitmap bmPhoto = new Bitmap(imgPhoto, destWidth, destHeight);
return bmPhoto;
}
我想知道,为什么我发现需要使用图表。 绘制图像的功能。