当前位置:编程学习 > C#/ASP.NET >>

怎样用c#将一个Graphics对象中的图像信息,保存为bmp位图文件?

希望各位前辈给于指教!! --------------------编程问答-------------------- 没遇过.帮你顶下 --------------------编程问答-------------------- Bitmap   bmp=   new   Bitmap(100,100); 
Graphics   g= Graphics.FromImage(bmp); 
 
bmp.Save( "c:\\a.bmp",System.Drawing.Imaging.ImageFormat.Bmp); --------------------编程问答-------------------- 路过学习了. --------------------编程问答--------------------
引用 2 楼 wuyq11 的回复:
Bitmap bmp= new Bitmap(100,100); 
Graphics g= Graphics.FromImage(bmp); 
 
bmp.Save( "c:\\a.bmp",System.Drawing.Imaging.ImageFormat.Bmp);

正解 --------------------编程问答-------------------- 楼上的楼上的楼上,正解。 --------------------编程问答-------------------- 构造该对象,调用Save方法·~ --------------------编程问答-------------------- 谢谢各位大侠!! --------------------编程问答--------------------
引用 2 楼 wuyq11 的回复:
Bitmap bmp= new Bitmap(100,100); 
Graphics g= Graphics.FromImage(bmp); 
 
bmp.Save( "c:\\a.bmp",System.Drawing.Imaging.ImageFormat.Bmp);

我为什么保存的只是一个小黑框,怎么让里面由信息。 --------------------编程问答-------------------- 这方法,从Graphic生成image
 Graphic.DrawImage(image,....)
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,