Lines Matching refs:splitheight
700 double splitheight = 0; /* Requested Max Height in points */ in get_subimage_count() local
704 splitheight = maxPageHeight * PS_UNIT_SIZE; in get_subimage_count()
719 case 180: if (splitheight > 0) /* -H maxPageHeight */ in get_subimage_count()
721 if (imageheight > splitheight) /* More than one vertical image segment */ in get_subimage_count()
727 … *yimages = (int)ceil((scale * imageheight) / (splitheight - overlap)); /* Max vert pages needed */ in get_subimage_count()
767 case 270: if (splitheight > 0) /* -H maxPageHeight */ 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()
836 double splitheight = 0; /* Requested Max Height in points */ in exportMaskedImage() local
841 splitheight = maxPageHeight * PS_UNIT_SIZE; in exportMaskedImage()
859 case 180: if (splitheight > 0) /* -H maxPageHeight */ in exportMaskedImage()
861 if (splitheight < imageheight) /* More than one vertical image segments */ in exportMaskedImage()
864 xscale = (imagewidth + overlap) * (pageheight / splitheight) * scale; in exportMaskedImage()
867 subimage_height = imageheight - ((splitheight - overlap) * row); in exportMaskedImage()
868 ytran = pageheight - subimage_height * (pageheight / splitheight); in exportMaskedImage()
873 ytran = splitheight - imageheight; in exportMaskedImage()
901 if (imageheight <= splitheight) { in exportMaskedImage()
909 case 270: if (splitheight > 0) /* -H maxPageHeight */ 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()
1074 double splitheight; in psPageSize() local
1079 splitheight = maxPageHeight * PS_UNIT_SIZE; in psPageSize()
1085 case 180: if ((splitheight > 0) || (splitwidth > 0)) in psPageSize()
1090 yscale = reqheight / (splitheight ? splitheight : psheight); in psPageSize()
1094 new_height = splitheight ? splitheight : scale * psheight; in psPageSize()
1128 case 270: if ((splitheight > 0) || (splitwidth > 0)) in psPageSize()
1133 yscale = reqheight / (splitheight ? splitheight : psheight); in psPageSize()
1137 new_height = splitheight ? splitheight : scale * pswidth; in psPageSize()
1250 double splitheight; in psStart() local
1256 splitheight = maxPageHeight * PS_UNIT_SIZE; in psStart()
1269 if ((splitheight != 0) || (splitwidth != 0)) in psStart()
1313 case 180: if ((splitheight != 0) || (splitwidth != 0)) in psStart()
1329 view_height = splitheight ? splitheight: *scale * psheight; in psStart()
1352 case 270: if ((splitheight != 0) || (splitwidth != 0)) in psStart()
1367 view_height = splitheight ? splitheight : *scale * pswidth; in psStart()