dest_width       3945 ext/gd/gd.c    	int dest_width = gdImageSX(im_org);
dest_width       3948 ext/gd/gd.c    	im_dest = gdImageCreate(dest_width, dest_height);
dest_width       3971 ext/gd/gd.c    		for (x = 0; x < dest_width; x++) {
dest_width       3999 ext/gd/gd.c    	int dest_width = -1;
dest_width       4017 ext/gd/gd.c    	dest_width = width;
dest_width       4085 ext/gd/gd.c    	x_ratio = (float) org_width / (float) dest_width;
dest_width       4094 ext/gd/gd.c    		dest_width = (int) (org_width / x_ratio);
dest_width       4097 ext/gd/gd.c    		x_ratio = (float) dest_width / (float) org_width;
dest_width       4105 ext/gd/gd.c    		dest_width = (int) (org_width * x_ratio);
dest_width       4109 ext/gd/gd.c    	im_tmp = gdImageCreate (dest_width, dest_height);
dest_width       4115 ext/gd/gd.c    	gdImageCopyResized (im_tmp, im_org, 0, 0, 0, 0, dest_width, dest_height, org_width, org_height);
dest_width       4121 ext/gd/gd.c    	im_dest = gdImageCreate(dest_width, dest_height);
dest_width       4142 ext/gd/gd.c    		for (x = 0; x < dest_width; x++) {