40 lines
786 B
C
40 lines
786 B
C
/*
|
|
|
|
PNG aka "portable network graphics"s.
|
|
|
|
|
|
Un vrai merdier, en fait :(
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include <png.h>
|
|
|
|
#include "tthimage.h"
|
|
|
|
/*::------------------------------------------------------------------::*/
|
|
Image_Desc * Image_PNG_alloc_load(char *fname, int k)
|
|
{
|
|
|
|
|
|
return 666;
|
|
}
|
|
/*::------------------------------------------------------------------::*/
|
|
int Image_save_as_PNG(Image_Desc *img, char *fname, int p1, int p2)
|
|
{
|
|
FILE *fp;
|
|
int x, y;
|
|
png_uint_32 pngv;
|
|
|
|
#if DEBUG_LEVEL
|
|
fprintf(stderr, "%s ( %p '%s' %d %d )\n", __func__, img, fname, p1, p2);
|
|
fprintf(stderr, " png version -> %d\n", png_access_version_number());
|
|
#endif
|
|
|
|
return FULL_NUCKED;
|
|
}
|
|
/*::------------------------------------------------------------------::*/
|