Home
last modified time | relevance | path

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

/PHP-7.1/ext/gd/
H A Dgd.c4034 int org_height, org_width; in _php_image_convert() local
4127 org_width = gdImageSX (im_org); in _php_image_convert()
4130 x_ratio = (float) org_width / (float) dest_width; in _php_image_convert()
4139 dest_width = (int) (org_width / x_ratio); in _php_image_convert()
4142 x_ratio = (float) dest_width / (float) org_width; in _php_image_convert()
4150 dest_width = (int) (org_width * x_ratio); in _php_image_convert()
4162 gdImageCopyResized (im_tmp, im_org, 0, 0, 0, 0, dest_width, dest_height, org_width, org_height); in _php_image_convert()

Completed in 20 milliseconds