FloatImg/funcs/fimg-tiff.c

22 lines
514 B
C

/*
* FLOATIMG
* import/export to/from TIFF files
*/
#include <stdio.h>
#include "../floatimg.h"
/* --------------------------------------------------------------------- */
/* --------------------------------------------------------------------- */
int essai_ecrire_tiff(FloatImg *src, char *fname)
{
/* bon, tout cela semble bien tortueux ! */
fprintf(stderr, "%s %s to be implemented\n", __FILE__, __func__);
return 0;
}
/* --------------------------------------------------------------------- */