gpt4 book ai didi

c# - Ubuntu(Wine)下的屏幕截图

转载 作者:行者123 更新时间:2023-12-04 18:46:48 28 4
gpt4 key购买 nike

我正在尝试截屏。在 Windows 下工作就像一个魅力。

window :http://i.imgur.com/QzmMDmO.jpg

但是,在 Ubuntu(14.04 LTS,使用 Wine)下不能正常工作。

示例:http://i.imgur.com/R62IDUt.jpg

我知道这是一个没有正确包装所有功能的 Wine 问题。但是,有没有其他方法可以在 Ubuntu/Windows 下尝试获取屏幕截图?谢谢。

我的实际代码:

int screenLeft = SystemInformation.VirtualScreen.Left;
int screenTop = SystemInformation.VirtualScreen.Top;
int screenWidth = SystemInformation.VirtualScreen.Width;
int screenHeight = SystemInformation.VirtualScreen.Height;

using (Bitmap bmp = new Bitmap(screenWidth, screenHeight)){
using (Graphics g = Graphics.FromImage(bmp)){
g.CopyFromScreen(screenLeft, screenTop, 0, 0, bmp.Size);
}
}

最佳答案

我将 Wine 更新到 1.7.5(Beta 版),现在它的工作就像一个魅力!

关于c# - Ubuntu(Wine)下的屏幕截图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32831428/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com