gpt4 book ai didi

c# - 是否可以使用 C# 代码使用 ASP.net 截取网页的屏幕截图

转载 作者:行者123 更新时间:2023-11-30 18:45:13 26 4
gpt4 key购买 nike

是否可以使用 C# 代码截取 ASP.net 网页的屏幕截图,然后将其提交回服务器?在此代码中仅访问本地主机,但相同的源代码无法访问 IIS,发生 CopyFromScreen 错误软件。可能是什么原因?

示例源代码:

Bitmap Bitmap;
Graphics Graps;
Bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height - 110, PixelFormat.Format32bppArgb);
Graps = Graphics.FromImage(Bitmap);
Graps.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, 110, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy);
Bitmap.Save(Server.MapPath("~") + "/YourShot.gif");

最佳答案

我有点困惑。您正在截取服务器的屏幕截图并将其保存在那里?这有什么意义?

tring 到底要做什么?如果您想截取网页的屏幕截图,那么您可能需要查看此 question .

我们还有另一个问题:How do you take a Screenshot of a website via .Net code?

还有一个question about taking screenshot

关于c# - 是否可以使用 C# 代码使用 ASP.net 截取网页的屏幕截图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/984972/

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