Image_Resize 1.0
for osCommerce Online Merchant v2.2
What can it do:
- the uploaded image is copied into dirctory images_big/ below your image directory
- then a small image according to the images settings (Small Image Width, Small Image Heigth) in the admin is made and copied into your image directory
- the big image can be resized too
- if something goes wrong (no gd-lib) it copies the original file to the image directory
- It corrects wrong filenames in uploaded images (empty spaces, specialchars...)
- Three ways of resizing
Legend: 
Download

Report
Juri's script results in resized but unclear image, the solution is to use imagecopyresampled() instead of imagecopyresized.
Hope that helped :)
I needed the same script but with restricted height.
So i have made a few changes to Juri's image_resize2.
The version included in v1.5 uses variable DIR_FS_DOCUMENT_ROOT, since DIR_FS_DOCUMENT_ROOT is defined in admin files, so it will not be parsed correctly.
The file included in this package uses DIR_FS_CATALOG instead.
popup_images.php (fixed version)
you will also need to download
08/08/2003 - Image Resize v1.5 for MS2
http://www.oscommerce.com/community/contributions,350
Pop up image does not show up correctly,
problem,
Find in popup_images.php
$image_subdir = BIG_IMAGE_SUBDIR;
Replace with
$image_subdir = DIR_FS_CATALOG_IMAGES_BIG
Included popup_images.php fixed
Thanks to OSC team, Joshua Dechant, and Henri Schmidhuber for this great contribution !!
Pop up image does not show up correctly,
problem,
Find in popup_images.php
$image_subdir = BIG_IMAGE_SUBDIR;
Replace with
$image_subdir = DIR_FS_CATALOG_IMAGES_BIG
Included popup_images.php fixed
Thanks to OSC team, Joshua Dechant, and Henri Schmidhuber for this great contribution !!
Image Resize v1.5 for MS2
Implemented support for the admin upload class in newer OSC snapshots.
** Build on May 18th, 2003 snapshot. Needs tested on MS2 to verify support or not **
Now also supports GD-LIB 2.x
previous upload failed -> file is corrupt
Now also supports for GD-LIB 2.x
Updated the files to MS1,
some bugfixes
What can it do:
- the uploaded image is copied into dirctory images_big/ below your image directory
- then a small image according to the images settings (Small Image Width, Small Image Heigth) in the admin is made and copied into your image directory
- the big image can be resized too
- if something goes wrong (no gd-lib) it copies the original file to the image directory
- It corrects wrong filenames in uploaded images (empty spaces, specialchars...)
- Three ways of resizing