C#中graphics图片怎么能将比例放大呀?

2024-11-15 14:31:59
推荐回答(1个)
回答(1):

用graphics画呀
假如你原图片为img
int newWidth;
int newHeight;
//你自定义图的长宽如
//newWidth=img.Width/10;
//newWidth=img.Height/10;
Bitmap newImg = new Bitmap(newWidth, newHeight);
Graphics g = Graphics.FromImage(newBmps);
g.DrawImage(img,0,0,newWidth,newHeight);

pictureBox.Image=newImg;

我上面不是说得很清楚了吗?注释那几行.newWidth和newHeight就是画新图的长和宽.你自己设置这个呀.比如原图是img,那么newWidth=img.Width*2
newHeight=img.Height*2 这样不就是按比例放大两倍来画出来了吗?
当然画出来的图是按像素计算的.放大了可能会模糊.这是没办法的