我可以运行以下命令
xwd -root | xwdtopnm | pnmtojpeg > screen.jpg
在 linux 下的终端中,它将生成我当前屏幕的屏幕截图。
我尝试使用代码执行以下操作:
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *fpipe;
char *command="xwd -root | xwdtopnm | pnmtojpeg";
char line[256];
if ( !(fpipe = (FILE*)popen(command,"r")) )
{ // If fpipe is NULL
perror("Problems with pipe");
exit(1);
}
while ( fgets( line, sizeof line, fpipe))
{
//printf("%s", line);
puts(line);
}
pclose(fpipe);
}
然后我编译并运行程序./popen > screen.jpg
,但生成的文件 screen.jpg 无法识别。我怎样才能做到这一点,以便我可以正确地通过我的程序?