Home
last modified time | relevance | path

Searched refs:str_bbox (Results 1 – 1 of 1) sorted by relevance

/PHP-5.3/ext/gd/
H A Dgd.c4367 BBox char_bbox, str_bbox = {0, 0, 0, 0}; in PHP_FUNCTION() local
4418 str_bbox.llx = min(str_bbox.llx, min(x1, min(x2, min(x3, x4)))); in PHP_FUNCTION()
4419 str_bbox.lly = min(str_bbox.lly, min(y1, min(y2, min(y3, y4)))); in PHP_FUNCTION()
4420 str_bbox.urx = max(str_bbox.urx, max(x1, max(x2, max(x3, x4)))); in PHP_FUNCTION()
4421 str_bbox.ury = max(str_bbox.ury, max(y1, max(y2, max(y3, y4)))); in PHP_FUNCTION()
4434 str_bbox = T1_GetStringBBox(*f_ind, str, str_len, space, T1_KERNING); in PHP_FUNCTION()
4445 add_next_index_long(return_value, (int) ceil(((double) str_bbox.llx)*sz/1000)); in PHP_FUNCTION()
4446 add_next_index_long(return_value, (int) ceil(((double) str_bbox.lly)*sz/1000)); in PHP_FUNCTION()
4447 add_next_index_long(return_value, (int) ceil(((double) str_bbox.urx)*sz/1000)); in PHP_FUNCTION()
4448 add_next_index_long(return_value, (int) ceil(((double) str_bbox.ury)*sz/1000)); in PHP_FUNCTION()

Completed in 17 milliseconds