class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
more info about the class
See all posts Reply
$handle->image_resize = true; $handle->image_ratio = true; $handle->image_x = 500; $handle->image_y = 500;
$info = getimagesize($handle->file_src_pathname); if ($info[0]>600) { // resize } else { // dont resize }
$handle->image_resize = true; $handle->image_ratio_no_zoom_in = true; $handle->image_x = 500; $handle->image_y = 500;
If I do this, it will stretch the smaller image out to have a width or height of 500:
I don't want any image to get stretched. If it's smaller than image_x or _y, I want it to stay smaller.
Check out php.net for more info on getimagesize()
From the doc:
image_ratio_no_zoom_in same as image_ratio, but won't resize if the source image is smaller than image_x x image_y (default: false)
So Tim, if you want to resize images that are bigger than 500px, but keep it as is if it is smaller, use the following code: