Lines Matching refs:height
50 dst = gdImageCreateTrueColor(crop->width, crop->height); in gdImageCrop()
52 dst = gdImageCreate(crop->width, crop->height); in gdImageCrop()
57 gdImageCopy(dst, src, 0, 0, crop->x, crop->y, crop->width, crop->height); in gdImageCrop()
82 const int height = gdImageSY(im); in gdImageCropAuto() local
91 crop.height = 0; in gdImageCropAuto()
121 for (y = 0; match && y < height; y++) { in gdImageCropAuto()
136 for (y = height - 1; match && y >= 0; y--) { in gdImageCropAuto()
141 crop.height = y - crop.y + 2; in gdImageCropAuto()
145 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropAuto()
153 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropAuto()
184 const int height = gdImageSY(im); in gdImageCropThreshold() local
193 crop.height = 0; in gdImageCropThreshold()
209 for (y = 0; match && y < height; y++) { in gdImageCropThreshold()
223 for (y = height - 1; match && y >= 0; y--) { in gdImageCropThreshold()
228 crop.height = y - crop.y + 2; in gdImageCropThreshold()
232 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropThreshold()
240 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropThreshold()