Home | History | Annotate | Download | only in gregbook

Lines Matching defs:image_height

133 static ulg image_width, image_height, image_rowbytes;
299 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
551 window = XCreateWindow(display, root, 0, 0, image_width, image_height, 0,
574 size_hints->min_height = size_hints->max_height = (int)image_height;
628 XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
645 xdata = (uch *)malloc(4*image_width*image_height);
648 xdata = (uch *)malloc(2*image_width*image_height);
651 xdata = (uch *)malloc(image_width*image_height);
661 (char *)xdata, image_width, image_height, pad, 0);
708 for (lastrow = row = 0; row < image_height; ++row) {
782 for (lastrow = row = 0; row < image_height; ++row) {
849 if (lastrow < image_height) {
851 (int)lastrow, image_width, image_height-lastrow);