This is not totally a programming question, but I think this is best place to ask.

The front page of my website has a nice banner, where more than half the image is a "gradient" of a color, and there is also some text. Now, to get any reasonable quality text, I have to save the jpeg file at > 90% quality and takes 106KB (not too bad, but it adds some extra load on my site especially as its the landing page I want it to be fast).

Now, I want to know, if there is any image format (like PNG/GIF), where such gradients could be stored in a more compressed way. If so, I will ask my designer to directly save in that format. Problem is, converting from JPEG to PNG/GIF is not the right way and actually increases the size because the "noise" has to be losslesly encoded.

The image : http://pollwidget.org/images/first_view.jpg

thanks

link|improve this question
feedback

1 Answer

With an image as large as the one you have, with as many colors in it as the one you have... you're not going to do a heck of a lot better than 80-100K given your quality parameters.

My recommendation would be to split the image up into at least two components - one is the background gradient and one is the view of the UI that you have. You can usually experience some good savings this way if you use PNG/GIF and force limits on the color palette.

Really, though, you should separate the text from the image. Not only will the text be unreadable to search engines; you can save a lot of space by letting the browser handle the text rendering. Just requires a bit of flexibility with the typefaces you can use. Check out Google's Font directory if you don't like the default browser fonts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.