Home
last modified time | relevance | path

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

/PHP-5.5/ext/gd/
H A Dgd.c4441 int org_height, org_width; in _php_image_convert() local
4521 org_width = gdImageSX (im_org); in _php_image_convert()
4524 x_ratio = (float) org_width / (float) dest_width; in _php_image_convert()
4533 dest_width = (int) (org_width / x_ratio); in _php_image_convert()
4536 x_ratio = (float) dest_width / (float) org_width; in _php_image_convert()
4544 dest_width = (int) (org_width * x_ratio); in _php_image_convert()
4554 gdImageCopyResized (im_tmp, im_org, 0, 0, 0, 0, dest_width, dest_height, org_width, org_height); in _php_image_convert()

Completed in 15 milliseconds