dest_width       4405 ext/gd/gd.c    	int dest_width = gdImageSX(im_org);
dest_width       4409 ext/gd/gd.c    	im_dest = gdImageCreate(dest_width, dest_height);
dest_width       4432 ext/gd/gd.c    		for (x = 0; x < dest_width; x++) {
dest_width       4460 ext/gd/gd.c    	int dest_width = -1;
dest_width       4476 ext/gd/gd.c    	dest_width = width;
dest_width       4544 ext/gd/gd.c    	x_ratio = (float) org_width / (float) dest_width;
dest_width       4553 ext/gd/gd.c    		dest_width = (int) (org_width / x_ratio);
dest_width       4556 ext/gd/gd.c    		x_ratio = (float) dest_width / (float) org_width;
dest_width       4564 ext/gd/gd.c    		dest_width = (int) (org_width * x_ratio);
dest_width       4568 ext/gd/gd.c    	im_tmp = gdImageCreate (dest_width, dest_height);
dest_width       4574 ext/gd/gd.c    	gdImageCopyResized (im_tmp, im_org, 0, 0, 0, 0, dest_width, dest_height, org_width, org_height);
dest_width       4580 ext/gd/gd.c    	im_dest = gdImageCreate(dest_width, dest_height);
dest_width       4601 ext/gd/gd.c    		for (x = 0; x < dest_width; x++) {