我可以运行以下命令
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 无法识别。我怎样才能做到这一点,以便我可以正确地通过我的程序?

最佳答案

你不应该使用 fgetsputs 来处理二进制数据。 fgets 会在看到换行符时停止。更糟糕的是,puts 将输出额外的换行符,并且在遇到\0 时也会停止。使用 freadfwrite 代替。

关于c - 在 C 中使用 popen() 失败?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/839232/

10-11 19:01