Compare commits
2 Commits
83af701479
...
f7ff7e385a
Author | SHA1 | Date | |
---|---|---|---|
f7ff7e385a | |||
|
7ff4453fb1 |
@ -210,7 +210,9 @@ lesquels sont décrits en page \pageref{outils}.
|
||||
Vous devez, en dehors des outils classiques (bash, gcc, make\dots),
|
||||
avoir quelques bibliothèques installées\footnote{Les \texttt{-dev}
|
||||
pour Debian et dérivées}~:
|
||||
\textsf{libv4l2, libpnglite, libtiff, libnetpbm, libz},
|
||||
\textsf{libv4l2, libpnglite, libtiff,
|
||||
libnetpbm\footnote{package libnetpbm10-dev},
|
||||
libz\footnote{package zlib1g-dev}},
|
||||
éventuellement avec le \textsf{-dev} correspondant,
|
||||
et probablement d'autres choses.
|
||||
|
||||
|
@ -111,7 +111,8 @@ if (type < 0) {
|
||||
fname = argv[optind];
|
||||
width = atoi(argv[optind+1]); height = atoi(argv[optind+2]);
|
||||
|
||||
if (verbosity) fprintf(stderr, "making '%s' %d x %d\n", fname, width, height);
|
||||
if (verbosity) fprintf(stderr, "making '%s' %d x %d, type %d\n",
|
||||
fname, width, height, type);
|
||||
|
||||
srand48(getpid() ^ time(NULL));
|
||||
|
||||
@ -130,6 +131,7 @@ switch(type) {
|
||||
case T_HDEG_A: fimg_hdeg_a(&fimg, 1.0); break;
|
||||
case T_VDEG_A: fimg_vdeg_a(&fimg, 1.0); break;
|
||||
case T_TPAT0: fimg_test_pattern(&fimg, 0, fvalue); break;
|
||||
case -1: exit(1);
|
||||
}
|
||||
|
||||
foo = fimg_dump_to_file(&fimg, fname, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user