//*************************************// //******** created by mamo139 *********// //*** http://mamo139.altervista.org ***// //*************************************// #include #include #include //*** strumenti gestione file bmp ***// char *** crea_bmp(char *nome, long x, long y); void disegna_bmp(char *nome, char *** array, long x, long y); //*** strumenti genstione numeri complessi ***// struct complesso { double r; double i; }; //*** strumenti gestione colori ***// struct rgb { int red; int green; int blue; }; struct rgb_d { double red; double green; double blue; }; struct hsv { int hue; int saturation; int value; }; struct rgb hsv_rgb(struct hsv hsv_map); //*** MAIN ***// int main (void){ char immagine_name[]="out_HSV.bmp"; //*********** PARAMETRI *************// long larghezza = 1500; long altezza = 1500; long deep = 2000; double y1 = 0.100; double x0 = -1.800, x1 = -1.675; double y0 = -0.025; //**********************************// //aggiustamento parametri double agg_temp; agg_temp=y1; y1=y0*(-1); y0=agg_temp*(-1); //**********************************// char *** matrice; matrice = crea_bmp(immagine_name,larghezza,altezza); //inizio elaborazione immagine long x,y,d,i; double real_x,real_y, colore; struct complesso z,c,temp; for(x=0;x 4) { d = i; break; } temp.r = z.r; temp.i = z.i; if(temp.r<0)temp.r=temp.r*(-1);if(temp.i<0)temp.i=temp.i*(-1); //condizione burningship z.r = (temp.r*temp.r) - (temp.i*temp.i) + c.r; z.i = (temp.r*temp.i)*2 + c.i; } //calcolo del colore colore = ((double)d/(double)deep); colore = (int)((double)colore*360); hsv.hue = colore*5; hsv.saturation = 255; hsv.value = 255; //if(hsv.hue > 360) hsv.hue = 360; //if(hsv.saturation > 255) hsv.saturation = 255; //if(hsv.value > 255) hsv.value = 255; rgb = hsv_rgb(hsv); //controllo punto dell'insieme di mendelbrot if(d==0) { matrice[x][y][0]=0; matrice[x][y][1]=0; matrice[x][y][2]=0; } else { //scrittura del colore matrice[x][y][0]=rgb.blue; //blu: colore matrice[x][y][1]=rgb.green; //verde: comportamento opposto al blu matrice[x][y][2]=rgb.red; //rosso: costante } } printf("%d%%\n",x*100/larghezza); } disegna_bmp(immagine_name,matrice,larghezza,altezza); printf("fine!"); system(immagine_name); //getchar(); return 0; } //****** FUNZIONI *******// char *** crea_bmp(char *nome, long x, long y){ FILE *stream, *cavia; stream = fopen(nome,"wb"); cavia = fopen("cavia","rb"); char *buffer; buffer = (char *)malloc(54 * sizeof(char)); long b = fread( buffer, 1, 54, cavia); buffer[18] = x%256;//asse x buffer[19] = x/256; buffer[22] = y%256;//asse y buffer[23] = y/256; fwrite(buffer, 1, b, stream); fclose(stream); char *** array; int i, j, h; array = (char***)malloc(x * sizeof(char *)); for(i=0; i=0; i2--) for(i1=0; i1