Page 1 of 1
Image Resize.
Posted: Tue Feb 14, 2006 2:04 pm
by No0b
How do I resize the uploaded image x and/or y axises? When I check the uploaded file for the type (if it's an image) I also need to resizes it. If theres a function or way to do this that you might know then all post are appreciated.
Thanks.
Posted: Tue Feb 14, 2006 2:37 pm
by Chris Corbyn
Posted: Tue Feb 14, 2006 2:52 pm
by feyd
Posted: Tue Feb 14, 2006 6:07 pm
by No0b
I've been trying to figure out what the arguments are in the imagecopyresized() function. Could someone explain what they are? Please

???
Posted: Tue Feb 14, 2006 6:50 pm
by josh
I doubt anyone is going to read the manual to you
Posted: Tue Feb 14, 2006 7:12 pm
by No0b
Ok I don't want anyone to read the manual to me. But can you interpit this? resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h.
Posted: Tue Feb 14, 2006 7:31 pm
by feyd
dst = destination image
src = source image
x and y are upper left coordinates in each, respectively
w and h are width and height of the rectangle you wish to resize/resample
Posted: Wed Feb 15, 2006 3:14 am
by onion2k