zoukankan      html  css  js  c++  java
  • SaveGraphics

        class SaveGraphics
        {
            //使用方法
            //Graphics g = chartControl1.CreateGraphics();
            //FromGraphics(g, chartControl1.Width, chartControl1.Height).Save("D:/a.jpg");
            public static Bitmap FromGraphics(Graphics g, int w, int h)
            {
                const int SRCCOPY = 0xcc0020;
                Bitmap b = new Bitmap(w, h);
                Graphics gd = Graphics.FromImage(b);

                BitBlt(new HandleRef(null, gd.GetHdc()), 0, 0, w, h,
                 new HandleRef(null, g.GetHdc()), 0, 0, SRCCOPY);
                gd.ReleaseHdc(); g.ReleaseHdc();
                return b;
            }
            [DllImport("gdi32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)]
            public static extern int BitBlt(HandleRef hDesDC, int x, int y, int w, int h, HandleRef hSrcDC, int xSrc, int ySrc, int dwRop);
        }

  • 相关阅读:
    spring学习(一)--spring简介
    The Evolved Packet Core
    Git版本控制入门学习
    分家后中国移动运营商2G/3G频率分配
    English name
    中国互联网五大势力竞争力报告
    ping
    mysql架构
    MySQL存储引擎
    79款 C/C++开发工具开源软件
  • 原文地址:https://www.cnblogs.com/_zjl/p/1713601.html
Copyright © 2011-2022 走看看