Windows tool to resize / crop images before uploading to web site

4

I'm supporting some non-techie users on Windows XP who are occasionally required to upload images to a web content management system. The source images come in many forms: JPEG, TIFF, EPS, etc. Before they can be uploaded they need to be resized to the right dimensions, occasionally cropped, and saved in web-friendly formats.

The computers they're using are a few years old and have 1GB of memory at best. A full featured editor like Photoshop or GIMP would not be a good option. I need something lightweight and easy to use.

What do you suggest?

Patrick McElhaney

Posted 2010-07-20T18:01:33.770

Reputation: 763

1You probably don't want ImageMagick then, even though that's usually the right tool. – Ignacio Vazquez-Abrams – 2010-07-20T18:02:58.603

Answers

9

Irfanview supports several image formats and is capable of resizing images to any required dimensions. It's pretty lightweight, and if you need additional formats to be supported, it has plug-ins that can be installed.

Isxek

Posted 2010-07-20T18:01:33.770

Reputation: 3 785

+1 a good choice for non-technical folks, but if you want really lightweight, you could give them some bat files that use imagemagick :D – DaveParillo – 2010-07-21T00:28:28.450

4

Give Paint.NET a try.

It's more powerful than Paint which comes with Windows XP but not as overwhelming as Photoshop or Gimp. It has similar layout to the older Paint application so users may already know how to use it.

I believe though that it doesn't read EPS format unfortunately, but it should read everything else you need.

Daisetsu

Posted 2010-07-20T18:01:33.770

Reputation: 5 195

2

Check out the free Image Resizer PowerToy from Microsoft.

IIRC you can set your own custom size and resize a batch of images with a right click.

GummiV

Posted 2010-07-20T18:01:33.770

Reputation: 621

1

I use XNView for this. It reads any image file format I've ever thrown at it and can be used in batch mode. For instance: take all the images in folder X regardless of format, resize to no more than 400px in either direction (only downsizing), apply a 10% sharpening filter, add a border, and save to jpeg in folder Y using the same filename and timestamp. Plus you can save the batch mode workflow as a script and share it with other people.

enter image description here

Here is an example xnview script for very large images downsizes in 4 steps, which generates better quality previews than downsizing in one. It wouldn't be very much fun to write, unless you're used to such things, but it was created by pushing buttons, testing the workflow, and then saving the results.

resize( 1 lanczos 50% 0% 0 1 0 )
resize( 1 lanczos 50% 0% 0 1 0 )
resize( 1 lanczos 50% 0% 0 1 0 )
resize( 1 lanczos 400 0 -1 1 0 )
sharpen( 10 )
settings( 1 0 1 0 0 0 0 )
output_path( P:\web_previews )
output( jpeg 85 0 0 0 0 0 1 )

enter image description here

matt wilkie

Posted 2010-07-20T18:01:33.770

Reputation: 4 147

huh, not sure what happened. In the next-to-last edit the images were inline, now they're just links. {shrug} – matt wilkie – 2010-07-20T22:43:43.240

1

Try FastStone Image Viewer. I used IrfanView for years until I tried the Image Viewer from FastStone. Since trying it, I wouldn't use anything else.

enter image description here

Mick Barker Sr.

Posted 2010-07-20T18:01:33.770

Reputation: 11

0

Try www.pixlr.com Its a flash based website has lots of options, maybe too many for your users, but its pretty nice, and free. It allows you to create a new image, upload from your computer, or edit from a URL.

Gene R

Posted 2010-07-20T18:01:33.770

Reputation: 121

0

Microsoft Paint. Honestly, it's a decent image editor considering it's built in. Cropping capabilities AND support for web-friendly formats (although BMP is the default).

Hello71

Posted 2010-07-20T18:01:33.770

Reputation: 7 636

Unfortunately, the resize dialog is only designed to scale an image by percentage. It doesn't provide a way to enter the target dimensions in pixels. – Patrick McElhaney – 2010-07-21T13:21:05.830