Welcome to mirror list, hosted at ThFree Co, Russian Federation.

decodepng.c - github.com/DanTheMan827/decodepng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 907be9a3da8f311467ca43ca72380b47f1198b1e (plain)
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
#include <stdio.h>
#include <stdint.h>
#include "lodepng/lodepng.h"

int main(int argc, char *argv[])
{
  if(argc < 2)
  {
    fprintf(stderr, "decodepng by DanTheMan827 and madmonkey1907\n\n");
    fprintf(stderr, "Build Date: %s \n", BUILD_DATE);
    fprintf(stderr, "    Commit: %s \n", BUILD_COMMIT);
    return 1;
  }

  unsigned char*image=0; //the raw pixels
  unsigned width=0,height=0;

  //decode
  unsigned error = lodepng_decode32_file(&image, &width, &height, argv[1]);
  
  if(error)
    return error;

  unsigned imageLength = width * height * 4;
  if((image==0)||(imageLength==0))
  {
    fprintf(stderr, "SOMEBODY SET UP US THE BOMB\n");
    return 1;
  }
  
  fwrite(image, 1, imageLength, stdout);
  fflush(stdout);

  return 0;
}