如何仅使用 ubuntu 工具截取 jpeg 格式的屏幕截图

如何仅使用 ubuntu 工具截取 jpeg 格式的屏幕截图

我需要开发一个 cpp 软件来捕获屏幕截图(jpeg 格式)并通过套接字发送图像的字节。

我正确创建了服务器套接字,但我不知道如何仅使用 ubuntu 预装软件以编程方式截取屏幕截图。

使用 gnome-screenshot:

std::system("gnome-screenshot -f screenshot"); // doesn't work from cpp

从航站楼

gnome-screenshot -f screenshot // works but store image in png format ( i need jpeg)

这是正确的使用工具吗?

有没有更好的工具可供我使用?

谢谢!

Gnome 截图

utente@uduntudev:~/Scrivania/XiboAgent$ gnome-screenshot -f screen.jpg
utente@uduntudev:~/Scrivania/XiboAgent$ file screen.jpg
screen.jpg: PNG image data, 1024 x 768, 8-bit/color RGB, non-interlaced
utente@uduntudev:~/Scrivania/XiboAgent$ 

相关内容