Compare commits

..

2 Commits

Author SHA1 Message Date
tth
c71e3b53b7 Merge branch 'master' of ssh://tetalab.org/tTh/FloatImg
changements important ou non, c'est la question...
2019-12-31 12:03:14 +01:00
tth
fdf5cc9462 nothing important 2019-12-31 12:02:37 +01:00
2 changed files with 10 additions and 3 deletions

View File

@ -32,8 +32,8 @@ for (y=1; y<fimg->height; y++) {
fx = (float)x / (float)fimg->width;
fimg_plot_rgb(fimg, x, y,
M*(cos(fx*K)+1.2),
M*(cos(fy*K)+1.2),
M*(cos(fx*fy)+1.2));
M*(sin(fy*K)+1.4),
M*(cos(fx*fy)+1.6));
}
}
return 0;

View File

@ -57,13 +57,20 @@ FloatImg fimg;
int foo;
fimg_create(&fimg, 512, 512, FIMG_TYPE_RGB);
fimg_draw_something(&fimg);
/* XXX
for (foo=0; foo<512; foo++) {
fimg_plot_rgb(&fimg, foo, foo, 17000.0, 8000.0, 11111.1);
}
*/
fimg_save_as_pnm(&fimg, "quux.pnm", 0);
foo = fimg_save_as_pnm(&fimg, "quux.pnm", 0);
fprintf(stderr, "save as pnm -> %d\n", foo);
foo = fimg_save_as_png(&fimg, fname, 0);
fprintf(stderr, "save as png -> %d\n", foo);
return 0;
}