Compare commits

...

2 Commits

Author SHA1 Message Date
tth
8dbe6dd5c1 patch the doc, luke 2021-10-25 20:04:32 +02:00
tth
86df4ef602 cumulfimgs can now export in all know formats 2021-10-25 18:17:38 +02:00
3 changed files with 6 additions and 3 deletions

View File

@ -1153,7 +1153,8 @@ cumulator options :
\end{verbatim} \end{verbatim}
Le nom par défaut du fichier résultant est \texttt{out.fimg}. Le nom par défaut du fichier résultant est \texttt{out.fimg}.
L'exportation « multiformat » est pour bientôt. L'exportation « multiformat » est enfin fonctionnelle, dans la
mesure des formats connus.
% =================================================================== % ===================================================================
\section{Debug}\index{Debug} \section{Debug}\index{Debug}

View File

@ -19,7 +19,8 @@ fimgstats: fimgstats.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -lm -o $@ gcc $(COPT) $< ../libfloatimg.a -lm -o $@
cumulfimgs: cumulfimgs.c $(DEPS) cumulfimgs: cumulfimgs.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -lm -o $@ gcc $(COPT) $< ../libfloatimg.a -lcfitsio \
-ltiff -lpnglite -lz -lm -o $@
mkfimg: mkfimg.c $(DEPS) mkfimg: mkfimg.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -lm -o $@ gcc $(COPT) $< ../libfloatimg.a -lm -o $@

View File

@ -108,7 +108,8 @@ if (to_gray) {
} }
} }
foo = fimg_dump_to_file(&accu, output_file, 0); // XXX foo = fimg_dump_to_file(&accu, output_file, 0);
foo = fimg_export_picture(&accu, output_file, 0);
if (foo) { if (foo) {
fprintf(stderr, "error %d while saving '%s'\n", foo, output_file); fprintf(stderr, "error %d while saving '%s'\n", foo, output_file);
exit(1); exit(1);