Lines Matching defs:height
24 "%s [-c color_mode] [-x coord] [-y coord] [-w width] [-h height] [-g gain] [-z offset] [-d dpi] [-t level] [-s] [-p] [-l 0|1] [-a ioport_addr] [-r]\n",
53 int width = -1, height = -1;
66 -h --height : scan height
163 || (strcmp (argv[i], "--height") == 0))
168 fprintf (stderr, "expected height value\n");
171 height = atoi (argv[i + 1]);
491 if (height < 0)
492 height = maxh;
516 if ((height < 1) || (height > maxh))
518 fprintf (stderr, "height must be between 1 and %d\n", maxh);
521 if (y + height > maxh)
524 "Bottom side of scan area exceed physical limits (y+height>%d)\n",
556 (x, y, width, height, dpi, color, gain, offset) != 1)