org_width        4000 ext/gd/gd.c    	int org_height, org_width;
org_width        4082 ext/gd/gd.c    	org_width  = gdImageSX (im_org);
org_width        4085 ext/gd/gd.c    	x_ratio = (float) org_width / (float) dest_width;
org_width        4094 ext/gd/gd.c    		dest_width = (int) (org_width / x_ratio);
org_width        4097 ext/gd/gd.c    		x_ratio = (float) dest_width / (float) org_width;
org_width        4105 ext/gd/gd.c    		dest_width = (int) (org_width * x_ratio);
org_width        4115 ext/gd/gd.c    	gdImageCopyResized (im_tmp, im_org, 0, 0, 0, 0, dest_width, dest_height, org_width, org_height);