FloatImg/tools/mkfimg.c

91 lines
1.9 KiB
C
Raw Normal View History

2019-03-03 16:22:55 +01:00
#include <stdio.h>
2019-09-11 06:06:59 +02:00
#include <string.h>
2019-03-03 16:22:55 +01:00
#include <stdlib.h>
#include <unistd.h>
#include "../floatimg.h"
2019-07-16 00:19:59 +02:00
int verbosity;
2019-03-03 16:22:55 +01:00
/* --------------------------------------------------------------------- */
2019-09-11 06:06:59 +02:00
#define T_BLACK 0
#define T_DRAND48 1
#define T_RGB_0 2
static int get_type(char *name)
2019-07-16 00:19:59 +02:00
{
2019-09-11 06:06:59 +02:00
fprintf(stderr, ">>> %s ( '%s' )\n", __func__, name);
#define TEST(str) ( ! strcmp(name, str) )
if TEST("black") return T_BLACK;
if TEST("drand48") return T_DRAND48;
return -1;
}
/* --------------------------------------------------------------------- */
static void help(int lj)
{
puts("Usage:\n\tmkfimg [options] quux.fimg width height\n");
if (verbosity) fimg_print_version(1);
2019-03-03 16:22:55 +01:00
2019-07-16 00:19:59 +02:00
exit(0);
}
/* --------------------------------------------------------------------- */
2019-03-03 16:22:55 +01:00
int main(int argc, char *argv[])
{
2019-07-16 00:19:59 +02:00
int foo, opt;
2019-03-03 16:22:55 +01:00
int width, height;
char *fname;
float fvalue;
2019-09-11 06:06:59 +02:00
int type = 0;
2019-03-03 16:22:55 +01:00
FloatImg fimg;
2019-09-11 06:06:59 +02:00
while ((opt = getopt(argc, argv, "ht:v")) != -1) {
2019-07-16 00:19:59 +02:00
switch(opt) {
case 'h': help(0); break;
2019-09-11 06:06:59 +02:00
case 't': type = get_type(optarg); break;
2019-07-16 00:19:59 +02:00
case 'v': verbosity++; break;
}
}
2019-09-11 06:06:59 +02:00
#if DEBUG_LEVEL
fprintf(stderr, "argc %d optind %d\n", argc, optind);
for (foo=0; foo<argc; foo++)
fprintf(stderr, "%3d %s\n", foo, argv[foo]);
#endif
if (3 != argc-optind) {
fprintf(stderr, "%s need filename, width & height\n", argv[0]);
2019-03-03 16:22:55 +01:00
exit(1);
}
2019-07-16 00:19:59 +02:00
fname = argv[optind];
width = atoi(argv[optind+1]); height = atoi(argv[optind+2]);
2019-09-11 06:06:59 +02:00
if (verbosity) fprintf(stderr, "making '%s' %d x %d\n", fname, width, height);
2019-03-03 16:22:55 +01:00
foo = fimg_create(&fimg, width, height, 3);
if (foo) {
fprintf(stderr, "create floatimg -> %d\n", foo);
exit(1);
}
2019-09-11 06:06:59 +02:00
switch(type) {
default:
case T_BLACK: fimg_clear(&fimg); break;
case T_DRAND48: fimg_drand48(&fimg, 1.0); break;
}
2019-03-03 16:22:55 +01:00
foo = fimg_dump_to_file(&fimg, fname, 0);
if (foo) {
2019-07-16 00:19:59 +02:00
fprintf(stderr, "dump fimg -> %d\n", foo);
2019-03-03 16:22:55 +01:00
exit(1);
}
return 0;
}
/* --------------------------------------------------------------------- */