org_width        4461 ext/gd/gd.c    	int org_height, org_width;
org_width        4541 ext/gd/gd.c    	org_width  = gdImageSX (im_org);
org_width        4544 ext/gd/gd.c    	x_ratio = (float) org_width / (float) dest_width;
org_width        4553 ext/gd/gd.c    		dest_width = (int) (org_width / x_ratio);
org_width        4556 ext/gd/gd.c    		x_ratio = (float) dest_width / (float) org_width;
org_width        4564 ext/gd/gd.c    		dest_width = (int) (org_width * x_ratio);
org_width        4574 ext/gd/gd.c    	gdImageCopyResized (im_tmp, im_org, 0, 0, 0, 0, dest_width, dest_height, org_width, org_height);