使用图形和位图在c#中保存更改的图像

时间:2016-09-09 11:09:18

标签: c# bitmap

我看了一个图像并在上面打印了一些文字。

Bitmap bmp = new Bitmap(@"d:\a.jpg");
RectangleF rectf = new RectangleF(70, 90, 90, 50);
Graphics g = Graphics.FromImage(bmp);
g.SmoothingMode = SmoothingMode.AntiAlias;
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.PixelOffsetMode = PixelOffsetMode.HighQuality;
g.DrawString("yourText", new Font("Tahoma", 8), Brushes.Black, rectf);
g.Flush();

如何将我的图像和这些更改保存在计算机的其他位置?

1 个答案:

答案 0 :(得分:3)

处理Graphics对象

g.Dispose();

并保存位图

bmp.Save(fileName);

Here您所有的Bitmap方法都包含不同版本的Save