I have an image that is pretty large in size, and I am trying to figure out how to reduce its size. Googling didn't make things clear. I thought just simply resaving it in some clever way would make the image take way less disk space. Is there a simple way to get that done?
|
closed as not a real question by Michael Petrotta, Andrew Barber♦, Cody Gray, Peter O., Graviton Feb 1 '12 at 8:24
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Not with png, but jpeg for example can be compressed, which of cause changes the quality. Else you have the option to make the image's dimensions smaller. |
||||
|
|
|
If you want to resize the image using command line tools, make sure ImageMagick is installed, then use the
And as sjums said, converting to jpeg (which is lossy) may also be your answer:
|
|||
|
|
|
if you are using .png format, you can save in 8 bit, 24 bit, and 32 bit colour depths. Obviously 8 and 24 bit have MUCH smaller file sizes. I am not sure how to do this programmatically, but I use Adobe Fireworks for this task all the time with fantastic results. One detriment to sticking with the reduced colour depth .png formats is the inability to keep a transparent background, but that's the price ou pay for reducing data size :( P.S. I use Fireworks CS4, I'm sure the newer versions do an even better job of compression. |
|||
|
|