C1Gauge 导出到图片
许多用户曾经咨询过我们是否可以将 C1Gauge 导出到 Image。目前我们没有我们没有提供把 C1Gauge 导出到 Image 接口。
但是我们可以使用 .NET 标准方法去捕捉 Image 从而 保存它。
使用该方法我们可以保存 C1Gauge 为 Image。
[System.Runtime.InteropServices.DllImport("gdi32.dll")] private static extern bool BitBlt( IntPtr hdcDest, int nXDest, int nYDest, int nWidth, int nHeight, IntPtr hdcSrc, int nXSrc, int nYSrc, int dwRop); public Bitmap CaptureControl(Control control) { Bitmap controlBmp; using (Graphics g1 = control.CreateGraphics()) { controlBmp = new Bitmap(control.Width, control.Height, g1); using (Graphics g2 = Graphics.FromImage(controlBmp)) { IntPtr dc1 = g1.GetHdc(); IntPtr dc2 = g2.GetHdc(); BitBlt(dc2, 0, 0, control.Width, control.Height, dc1, 0, 0, 13369376); g1.ReleaseHdc(dc1); g2.ReleaseHdc(dc2); } } return controlBmp; } 复制代码
环境:C1 Studio for Windows && VS 2010