#include "imext.h" char evalstr[]="Description string of plugin dyntest - kind of like"; void null_plug(void *ptr) { } /* Example dynamic filter - level stretch (linear) - note it only stretches and doesn't compress */ /* input parameters a: the current black b: the current white 0 <= a < b <= 255; output pixel value calculated by: o=((i-a)*255)/(b-a); note that since we do not have the needed functions to manipulate the data structures *** YET *** */ unsigned char static saturate(int in) { if (in>255) { return 255; } else if (in>0) return in; return 0; } void lin_stretch(i_img *im, int a, int b) { i_color rcolor; int i,bytes,x,y; int info[4]; /* fprintf(stderr,"parameters: (im 0x%x,a %d,b %d)\n",im,a,b);*/ bytes=im->bytes; i_img_info(im,info); for(y=0;yysize;y++) for(x=0;xxsize;x++) { i_gpix(im,x,y,&rcolor); for(i=0;ichannels;i++) rcolor.channel[i]=saturate((255*(rcolor.channel[i]-a))/(b-a)); i_ppix(im,x,y,&rcolor); } }