Searched refs:crop (Results 1 – 2 of 2) sorted by relevance
65 if (crop->x < 0 || crop->x>=src->sx || crop->y<0 || crop->y>=src->sy) { in gdImageCrop()71 crop->width = src->sx - crop->x; in gdImageCrop()74 crop->height = src->sy - crop->y; in gdImageCrop()89 for (y = crop->y; y < (crop->y + crop->height); y++) { in gdImageCrop()90 for (x = crop->x; x < (crop->x + crop->width); x++) { in gdImageCrop()182 crop.height = height - crop.y + 1; in gdImageCropAuto()184 crop.height = y - crop.y + 2; in gdImageCropAuto()201 crop.width = x - crop.x + 2; in gdImageCropAuto()202 if (crop.x <= 0 || crop.y <= 0 || crop.width <= 0 || crop.height <= 0) { in gdImageCropAuto()280 crop.height = y - crop.y + 2; in gdImageCropThreshold()[all …]
834 gdImagePtr gdImageCrop(gdImagePtr src, const gdRectPtr crop);
Completed in 19 milliseconds