summaryrefslogtreecommitdiffstats
path: root/lisiblepng-bin/src/main.c
blob: 62dea3146c686cff9307205cd211bef7da2539c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <errno.h>
#include <lisiblepng.h>
#include <stdio.h>
#include <string.h>

#define LOG0(msg) fprintf(stderr, msg)
#define LOGN(fmt, ...) fprintf(stderr, fmt, __VA_ARGS__)

int main(int argc, char **argv) {
  if (argc != 2) {
    LOG0("Usage: lisiblepng <png filepath>");
    return 1;
  }

  const char *png_filepath = argv[1];
  FILE *png_file = fopen(png_filepath, "r");
  if (!png_file) {
    const char *error_message = strerror(errno);
    LOGN("Couldn't open PNG file: %s", error_message);
    goto err;
  }

  Png *png = lis_Png_parse(png_file);
  lis_Png_dump_ppm(png);
  lis_Png_destroy(png);

  if (fclose(png_file) != 0) {
    const char *error_message = strerror(errno);
    LOGN("Couldn't close PNG file: %s", error_message);
    goto err;
  }

  return 0;
err:
  return 1;
}
Go back to lisible.xyz