Force image resize

Hey there!

I am working on an image upload script at the moment. And because the images maybe large i want to resize them to 640X480 ( big enough for most things
on the web.) How ever i am unsure if there is a default extension in php that i could use to resize them, or would l have to look another plugin.

Thanks!

For years I’ve used an image resize script that utilizes GD to resize the images on demand. It does some caching so that your server resources aren’t chewed up as well.

http://shiftingpixel.com/2008/03/03/smart-image-resizer/

Take a look as it may be what you’re looking for, although it’s not a default extension in PHP.

Thanks! That is what i was looking for. I don’t mind not using a default extension at all!