c#远程桌面连接解析

时间:2017-03-11 11:48:57

标签: c# image graph image-resizing

我正在编写类似于TeamViewer的程序。但我有一个问题,屏幕分辨率太高。如何降低传入图片的质量?

byte[] ScreenShut()
{
    Bitmap bmp = new Bitmap(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height);

    Graphics gr = Graphics.FromImage(bmp);
    bmp.SetResolution(96.0F,96.0F);
    gr.CopyFromScreen(0, 0, 0, 0, new Size(bmp.Width, bmp.Height));
    MemoryStream ms = new MemoryStream();
    bmp.Save(ms, ImageFormat.Png);
    return ms.GetBuffer();
}

1 个答案:

答案 0 :(得分:1)

从graphics.CopyFromScreen()创建一个位图然后创建另一个位图来扩展浪费太多的CPU。

[DllImport("user32")] static extern int GetDC(int hWnd);
[DllImport("user32")] static extern int ReleaseDC(int hwnd, int hDC)
[DllImport("gdi32")] static extern int StretchBlt(int hdc, int x, int y, int nWidth, int nHeight, int hSrcDC, int xSrc, int ySrc, int nSrcWidth, int nSrcHeight, int dwRop);

        int W = Screen.PrimaryScreen.Bounds.Width;
        int H = Screen.PrimaryScreen.Bounds.Height;
        int dW = W * 2 / 3; // 66%
        int dH = H * 2 / 3; // 66%

        Bitmap img = new Bitmap(dW, dH);
        Graphics g = Graphics.FromImage(img);
        var dc = g.GetHdc();
        var screen = GetDC(0);
        StretchBlt(dc.ToInt32(), 0, 0, dW, dH, screen, 0, 0, W, H, 0xCC0020);
        g.ReleaseHdc(dc) ;
        ReleaseDC(0, screen)

        img.Save(@"C:\123.png", ImageFormat.Jpeg);

缩放图像后,文字将变得难以阅读。缩放应该在75%左右,然后使用JPG压缩格式来缩小see here