added a new function : fimg_rotate_90, need more tests

This commit is contained in:
tonton Th
2020-03-24 09:31:52 +01:00
parent 394b24bc92
commit e9a61bb96a
6 changed files with 125 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
* floatimg.h
*/
#define FIMG_VERSION 95
#define FIMG_VERSION 96
/*
* in memory descriptor
@@ -96,6 +96,9 @@ int fimg_filter_3x3(FloatImg *s, FloatImg *d, FimgFilter3x3 *filtr);
int fimg_killcolors_a(FloatImg *fimg, float fval);
int fimg_killcolors_b(FloatImg *fimg, float fval);
/* funcs/rotate.c module */
/* #coronamaison */
int fimg_rotate_90(FloatImg *src, FloatImg *dst, int notused);
/* PNM files module */
int fimg_save_as_pnm(FloatImg *head, char *fname, int flags);