Compare commits
2 Commits
5845ab7962
...
8dbe6dd5c1
Author | SHA1 | Date | |
---|---|---|---|
|
8dbe6dd5c1 | ||
|
86df4ef602 |
@ -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}
|
||||||
|
@ -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 $@
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user