使用QT Jambi进行截图

发布于 2024-08-28 16:51:50 字数 730 浏览 7 评论 0原文

我正在使用 QT Jambi (java) 来制作浏览器窗口的屏幕截图。 我的主要方法像这样启动框架:

QApplication.initialize(new String[1]);

ScreenshotMain widget = new ScreenshotMain();
widget.showFullScreen();
QApplication.exec();

当浏览器完成加载时,将调用以下方法并获取屏幕截图。

public void loadDone() {
// Taking screenshot
QPixmap pixmap;
pixmap = QPixmap.grabWidget(browser);

pixmap.save(writeTo, "png");
System.out.println("Made screenshot "+writeTo);

browser.loadProgress.disconnect(this);
browser.loadFinished.disconnect(this);
QApplication.closeAllWindows();

现在的问题如下:

如何在不打开浏览器窗口并加载内容的情况下从应用程序中截取屏幕截图。我的想法是,我有一个服务器应用程序,我不想打开一个窗口来制作屏幕截图。

你们有没有人有这样使用 QT Jambi 进行屏幕截图的经验?

非常感谢您的帮助 马克

I am using QT Jambi (java) to make screenshots of a browser window.
My main method starts the framework like this:

QApplication.initialize(new String[1]);

ScreenshotMain widget = new ScreenshotMain();
widget.showFullScreen();
QApplication.exec();

and when the browser is done with the loading the following method is invoked and takes the screenshot.

public void loadDone() {
// Taking screenshot
QPixmap pixmap;
pixmap = QPixmap.grabWidget(browser);

pixmap.save(writeTo, "png");
System.out.println("Made screenshot "+writeTo);

browser.loadProgress.disconnect(this);
browser.loadFinished.disconnect(this);
QApplication.closeAllWindows();

}

My question now is the following:

How can I make screenshots out of an application without having to open a browser window, have it load the content. The idea is that I have a server application and I don´t want to open a window to make the screenshot.

Does anyone of you have experience to make screenshots using QT Jambi in this way.

Thanks a lot for your help
Marc

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

誰ツ都不明白 2024-09-04 16:51:50

这可能就是您正在寻找的内容: 链接

This might be what you are looking for: linky

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文