gpt4 book ai didi

C# 打印屏幕 | GDI+ 中发生一般性错误。

转载 作者:行者123 更新时间:2023-11-30 19:41:48 24 4
gpt4 key购买 nike

所以我有这个表单,如果用户按下一个按钮,这个方法就会被执行:

//Takes a screenshot of the screen to send it with the email
private void screenshot()
{
Bitmap printscreen = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);

Graphics graphics = Graphics.FromImage(printscreen as Image);

graphics.CopyFromScreen(0,0,0,0, printscreen.Size);

printscreen.Save(@"C:\Users\*******\Desktop", ImageFormat.Jpeg);
}

但是当我按下按钮时,出现以下错误:GDI+ 中发生一般性错误。

有什么想法吗?

提前致谢。

最佳答案

我敢打赌调用 Save 会崩溃,不是吗? :)

绝对确保可以写入该文件!就像你的情况一样:我希望你不要试图将图像保存为桌面文件夹,因为它看起来有点像;)

关于C# 打印屏幕 | GDI+ 中发生一般性错误。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18763915/

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