2019-03-03 16:22:55 +01:00
|
|
|
/*
|
|
|
|
* FLOATIMG
|
|
|
|
* import/export to/from TIFF files
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "../floatimg.h"
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
/* --------------------------------------------------------------------- */
|
2019-09-02 10:42:03 +02:00
|
|
|
int essai_ecrire_tiff(FloatImg *src, char *fname)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* bon, tout cela semble bien tortueux ! */
|
|
|
|
|
2020-01-17 10:53:45 +01:00
|
|
|
fprintf(stderr, "%s %s to be implemented\n", __FILE__, __func__);
|
|
|
|
|
2019-09-02 10:42:03 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2019-03-03 16:22:55 +01:00
|
|
|
/* --------------------------------------------------------------------- */
|