Post Archive

› June 8, 2002

Another plus to Mozilla

  • Reported by Nate

If AOL adopts Mozilla as it's default embedded browser, we may get a workaround to AOL's sneaky image caching and re-compression and it's associated problems.
First a little background info: AOL uses it's own proprietary (".art" format) compression technique (developed by Johnson-Grace) to recompress and cache images before they are delivered to AOL subcribers. This introduces the following issues for us web designers - it is difficult to predict (many images show no ill effects), sometimes very ugly, and completely unavoidable. I should probably say "completely unavoidable unless your image is less than 1k, or you hold an AOL partner status", which I hear entitles you to a top secret development tool which can handle the ART format - no comercially available image editor will open or save in the ART format, not even Photoshop.
As long as AOL does not add the PNG format to their list of compressable/cacheable items, we could deliver PNGs to get around the problem - Mozilla supports them. I'm not certain on this, but it might even be possible to use css to filter png images to mozilla based browsers.
More info on the reasons for these compression issues, webreference also has more info near the bottom of this page about graphics formats.
Several years ago I ran into this issue with a site design created for a client who viewed the work from his home AOL connection. From my personal experience I'd like share a tip for combating undesireable results (massive resampling of a greyscale gradient in my case): save JPGs as progressive and use trial and error with the progressive settings. Hopefully my little snippet of advice will save someone the 3 days it took me to figure it out.

Comments

1. June 8, 2002 01:51 PM

Quote this comment

Nate Posted…

Based on the css 2 spec for the content property, I would think that setting the following attribute for each image would provide a PNG replacement for user agents that supported the PNG format (as well as css2)
img {
.uniqueImageName { content: url(“imgname.png”)}

2. June 11, 2002 01:20 AM

Quote this comment

Mark Posted…

AFAIK, Mozilla already supports the .art image format :-)

3. June 11, 2002 08:04 AM

Quote this comment

Doug Posted…

I have found that adding a “?” to the end of the img src urls takes care of the problem as well. Unfortunatly, AOL users will not store the image in cache, but is that really a big deal?