Lines Matching refs:imagewidth

695 		       double imagewidth, double imageheight,  in get_subimage_count()  argument
710 if ((imagewidth < 1.0) || (imageheight < 1.0)) in get_subimage_count()
724 *ximages = (int)ceil((scale * imagewidth) / (pagewidth - overlap)); in get_subimage_count()
732 … *ximages = (int)ceil((scale * imagewidth) / (pagewidth - overlap)); /* Max horz pages needed */ in get_subimage_count()
742 if (imagewidth >splitwidth) in get_subimage_count()
744 …*ximages = (int)ceil((scale * imagewidth) / (splitwidth - overlap)); /* Max horz pages needed */ in get_subimage_count()
769 if (imagewidth > splitheight) /* More than one vertical image segment */ in get_subimage_count()
771 … *yimages = (int)ceil((scale * imagewidth) / (splitheight - overlap)); /* Max vert pages needed */ in get_subimage_count()
793 … *yimages = (int)ceil((scale * imagewidth) / (pageheight - overlap)); /* Max vert pages needed */ in get_subimage_count()
801 … *yimages = (int)ceil((scale * imagewidth) / (pageheight - overlap)); /* Max horz pages needed */ in get_subimage_count()
825 double imagewidth, double imageheight, in exportMaskedImage() argument
844 xscale = scale * imagewidth; in exportMaskedImage()
864 xscale = (imagewidth + overlap) * (pageheight / splitheight) * scale; in exportMaskedImage()
880 if (splitwidth < imagewidth) in exportMaskedImage()
898 if (imagewidth <= pagewidth) { in exportMaskedImage()
911 if (splitheight < imagewidth) /* More than one vertical image segments */ in exportMaskedImage()
918 ytran = -1.0 * (imagewidth - splitheight); in exportMaskedImage()
920 ytran = -1.0 * (imagewidth - (splitheight - overlap) * (row + 1)); in exportMaskedImage()
925 ytran = splitheight - imagewidth; in exportMaskedImage()