char filename[256];
unsigned char *png;
int imglen;
+ int ret;
int l;
int fd;
pid_t display;
printf ("hmm. didnt' get %d bytes, but %d\n\n", sizeof(screen), l);
}
+ png = lcd2png(screen, &imglen);
+
+ lt = time(NULL);
strftime(filename, sizeof(filename), "screen_%Y%m%d-%H%M%S.png", localtime(<));
fd=open(filename, O_CREAT|O_WRONLY, 0644);
- png = lcd2png(screen, &imglen);
- write(fd, png, imglen);
+ if (fd == -1) {
+ perror("open");
+ exit(EXIT_FAILURE);
+ }
+
+ while(imglen > 0) {
+ ret = write(fd, png, imglen);
+ if (ret == -1) {
+ perror("write");
+ exit(EXIT_FAILURE);
+ }
+ imglen -= ret;
+ }
close(fd);
+ free(png);
printf("Waveform saved as %s\n", filename);