RSS/Atom feed Twitter
Site is read-only, email is disabled

Save For Web Option?

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

6 of 6 messages available
Toggle history

Please log in to manage your subscriptions.

Save For Web Option? Mark Sargent 05 Apr 09:03
  Save For Web Option? Dave Neary 05 Apr 09:40
  Save For Web Option? J. van Kan 05 Apr 11:24
  Save For Web Option? Vytautas P. 05 Apr 11:55
  Save For Web Option? Shawn Willden 06 Apr 22:28
   Save For Web Option? Mark Sargent 08 Apr 15:25
Mark Sargent
2006-04-05 09:03:58 UTC (about 18 years ago)

Save For Web Option?

Hi All,

am a rather experienced Linux user for the past 2yrs or so, but, not much with Gimp. I used to use Fireworks/Photoshop on Windows some time back, and am wondering where within Gimp I can just save as for web, and it allows me to resize etc. I can't seem to find that option anywhere in the menus. All I see is, save, save as, save a copy, save as template. I have a 14.5mb file that I need to get to under 500kb or less. Could someone point this non-gui fool in the right direction? Cheers.

Mark Sargent.

Dave Neary
2006-04-05 09:40:51 UTC (about 18 years ago)

Save For Web Option?

Hi Mark,

Sorry - we don't have it.

It wouldn't be hugely difficult - you'd nee a plug-in that can resize, index, save as png, save as gif, save as jpg, with a quality slider, that would show file size and a decent preview for the different formats. But we don't have it.

If anyone knows of a decent plug-in that does, I'd be delighted to hear about it.

Cheers,
Dave.

Mark Sargent wrote:

Hi All,

am a rather experienced Linux user for the past 2yrs or so, but, not much with Gimp. I used to use Fireworks/Photoshop on Windows some time back, and am wondering where within Gimp I can just save as for web, and it allows me to resize etc. I can't seem to find that option anywhere in the menus. All I see is, save, save as, save a copy, save as template. I have a 14.5mb file that I need to get to under 500kb or less. Could someone point this non-gui fool in the right direction? Cheers.

Mark Sargent.

_______________________________________________ Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

J. van Kan
2006-04-05 11:24:58 UTC (about 18 years ago)

Save For Web Option?

On Wed, 2006-04-05 at 16:03 +0900, Mark Sargent wrote:

Hi All,

am a rather experienced Linux user for the past 2yrs or so, but, not much with Gimp. I used to use Fireworks/Photoshop on Windows some time back, and am wondering where within Gimp I can just save as for web, and it allows me to resize etc. I can't seem to find that option anywhere in the menus. All I see is, save, save as, save a copy, save as template. I have a 14.5mb file that I need to get to under 500kb or less. Could someone point this non-gui fool in the right direction? Cheers.

Store it in .jpg or .png format. By setting the quality parameters you can influence the size.

Regards,

Vytautas P.
2006-04-05 11:55:19 UTC (about 18 years ago)

Save For Web Option?

What format your file is? BMP? TIFF? If so, just saving to jpg would make the trick.

Mark Sargent wrote:

Hi All,

am a rather experienced Linux user for the past 2yrs or so, but, not much with Gimp. I used to use Fireworks/Photoshop on Windows some time back, and am wondering where within Gimp I can just save as for web, and it allows me to resize etc. I can't seem to find that option anywhere in the menus. All I see is, save, save as, save a copy, save as template. I have a 14.5mb file that I need to get to under 500kb or less. Could someone point this non-gui fool in the right direction? Cheers.

Mark Sargent.

Shawn Willden
2006-04-06 22:28:44 UTC (about 18 years ago)

Save For Web Option?

On Wednesday 05 April 2006 01:03, Mark Sargent wrote:

am a rather experienced Linux user for the past 2yrs or so, but, not much with Gimp. I used to use Fireworks/Photoshop on Windows some time back, and am wondering where within Gimp I can just save as for web, and it allows me to resize etc. I can't seem to find that option anywhere in the menus. All I see is, save, save as, save a copy, save as template. I have a 14.5mb file that I need to get to under 500kb or less. Could someone point this non-gui fool in the right direction? Cheers.

Well, if you're a non-gui fool, I'd suggest a non-gui tool. I'd use imagemagick, something like:

convert infile.bmp -resize 500x500 -quality 75 outfile.jpg

ImageMagick uses the file extension on the output to decide what type of image compression to use, so it will save as a JPEG. The -resize option by default will not stretch your image so the above will resize your image to be at most 500 pixels on each side. Finally the -quality is used by the JPEG compressor and takes a number between 0 and 100. Smaller numbers give you worse images, but 75 is a good tradeoff which gives you good image quality and good compression.

You can easily play with the numbers to get larger or smaller image sizes.

If you do want to use the GIMP (certainly not a bad choice), you should use Image->Scale Image to shrink the resolution down, then Save As and enter a file name with a .jpg extension. The GIMP will then prompt you for a quality level and if you click the "Show Preview in image window" you can see the effects of dragging it back and forth, and you can also see the file size right undernath the quality slider.

Have fun,

Shawn.

Mark Sargent
2006-04-08 15:25:11 UTC (about 18 years ago)

Save For Web Option?

Shawn Willden wrote:

Well, if you're a non-gui fool, I'd suggest a non-gui tool. I'd use imagemagick, something like:

convert infile.bmp -resize 500x500 -quality 75 outfile.jpg

ImageMagick uses the file extension on the output to decide what type of image compression to use, so it will save as a JPEG. The -resize option by default will not stretch your image so the above will resize your image to be at most 500 pixels on each side. Finally the -quality is used by the JPEG compressor and takes a number between 0 and 100. Smaller numbers give you worse images, but 75 is a good tradeoff which gives you good image quality and good compression.

You can easily play with the numbers to get larger or smaller image sizes.

awesome

If you do want to use the GIMP (certainly not a bad choice), you should use Image->Scale Image to shrink the resolution down, then Save As and enter a file name with a .jpg extension. The GIMP will then prompt you for a quality level and if you click the "Show Preview in image window" you can see the effects of dragging it back and forth, and you can also see the file size right undernath the quality slider.

even more awesome

Have fun,

I most certainly did. Cheers, Shawn.

Mark Sargent