Image compression for webcomics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:55:00Z http://stackoverflow.com/feeds/question/422902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/422902/image-compression-for-webcomics 1 Image compression for webcomics Vilx- 2009-01-08T01:31:06Z 2009-01-08T17:35:53Z <p>As probably many people around here I read a few webcomics. <a href="http://www.drowtales.com" rel="nofollow">Drowtales</a> is my favorite, but that's besides the point.</p> <p>For a long time a thought has been nagging me at the back of my head: webcomics are drawn pictures. They are not photographs. There should be a lot of redundancy (less colors, more flat colored areas, etc.) and thus they should be easily compressible at quite high rates while still maintaining lossless quality. Still it seems that the best tool to compress them is the same old lossy JPEG.</p> <p>How so? Are there not better things invented? I'm not an expert in data compression, so my own meager attempts at finding some better algorithm have been fruitless. Best I could find was <a href="http://pmt.sourceforge.net/pngcrush/" rel="nofollow">Pngcrush</a>, but it still is way behind JPEG in terms of compression.</p> <p>I would like to hear an expert opinion on this. Is this idea of mine foolish and doomed to failure? Or is there perhaps some way that people have found or that I could look into?</p> <p>This, of course, comes from the selfish desire to decrease load times. :)</p> <p><strong>Added:</strong> Some people seem to miss the point, so I'll clarify:</p> <p>Webcomic images should have a lot of redundancy in them so they should be easily compressible. <strong>Is it not possible to somehow compress them so that they would be both lossless AND smaller than JPEG?</strong> Or at the very least compress them better than JPEG while still retaining the quality.</p> <p>Since they would be for <strong>web</strong> the specialized compressor should still probably emit PNG or JPEG - just compressed with a modified algorithm for better results.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/422923#422923 0 Answer by dmckee for Image compression for webcomics dmckee 2009-01-08T01:40:36Z 2009-01-08T03:08:35Z <p>For pen-and-inkish images, the compression scheme in GIF can work wonders.</p> <p>JPEG compression is ill-suited to that kind of image.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/422924#422924 7 Answer by Mike Scott for Image compression for webcomics Mike Scott 2009-01-08T01:40:49Z 2009-01-08T01:40:49Z <p>The problem with comics is that a lot of graduated colouring is used. A common technique when colouring a comic on computer using Photoshop, for example, is to start by blocking out areas in solid colour as you mentioned. However, these solid areas are then refined using various techniques, from hand touching using airbrush tools to overlaying graduated fills, dodging and burning tools, etc.</p> <p>The result is an image which is more like a natural image - which is what comic artists are striving for of course - and thus it compresses better with a lossy algorithm such as that used by JPEG.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/422944#422944 0 Answer by Jader Dias for Image compression for webcomics Jader Dias 2009-01-08T01:48:43Z 2009-01-08T01:48:43Z <p>No matter how great a lossless compression is, a loss compression will always be better, because it just has fewer limitations.</p> <p>Imagine that one day they invent some lossless compression better than jpeg for comics, obviously the next day someone will modify it to compress more, even, and probably, if it means that some info is lost.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/422972#422972 0 Answer by sliderhouserules for Image compression for webcomics sliderhouserules 2009-01-08T02:01:31Z 2009-01-08T02:36:01Z <p>Drawn vs. not drawn, web comics vs. any other type of image... that's not relevant. The specifics of how web comics are drawn or the colors are laid out or whatever is something you're perceiving as different. But you can bet that decades of graphics research and development have that fully taken into account, and the people that do graphics optimizations for a living have pushed the envelope.</p> <p>If there was a better compression algorithm than JPEG, GIF, PNG, etc. then don't you think it would be in wide-spread use? If you're looking for fairly recent breakthroughs then I think you're probably wasting your time, as 1) you'd have to expend quite a bit of effort to make your front-end compression compatible with whatever viewer people use (like browsers) and 2) if it had significant gains from current formats then it would become wide-spread fairly quickly.</p> <p><hr /></p> <p>If I'm getting down-voted I must not have explained myself very well.</p> <p>Thinking that web comics are in some special domain because they're hand-drawn or have lots of color repetition is a bit silly. Finding large blocks of the same color is one of the absolute basics of image compression.</p> <p>Get yourself a good graphics program, and using your specific image, see which of its export formats yields the smallest image size while retaining the quality you desire. It is going to be different for different images.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/422973#422973 4 Answer by Greg Hewgill for Image compression for webcomics Greg Hewgill 2009-01-08T02:02:11Z 2009-01-08T02:02:11Z <p>A completely different approach would be to render the comic images using a vector format like SVG. That would capture the essence of the drawing (fill here, arc here, line here, etc) without having to try to raster-compress the resulting images.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/422975#422975 0 Answer by Kibbee for Image compression for webcomics Kibbee 2009-01-08T02:02:41Z 2009-01-08T02:02:41Z <p>You may want to cut down on how many colours you are encoding in your image. Try saving your comic with only 256 colours and watch the size decrease a lot. Depending on your specific drawing style, that me be enough.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/422983#422983 0 Answer by Ant P for Image compression for webcomics Ant P 2009-01-08T02:04:44Z 2009-01-08T02:04:44Z <p>A few things I've picked up on doing images for web use -</p> <ul> <li>Use <code>jpegtran -optimise</code> on JPEGs - it recompresses them losslessly and can shave a good few percent off poorly compressed images.</li> <li>I run PNG files through <code>pngnq</code> (make them 8 bit) and then <code>optipng -i0</code> (recompress and remove any interlacing). I know you said you don't like lossy, but pngnq does an amazingly good job of converting images to a palette - best thing to do is try it yourself and see if the output is good enough.</li> </ul> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/423017#423017 11 Answer by Bill the Lizard for Image compression for webcomics Bill the Lizard 2009-01-08T02:15:58Z 2009-01-08T04:00:17Z <p>No question, it's a balancing act between appearance and performance. Barring a custom compression algorithm specifically for comics, I think the best you can do is experiment with JPEG compression levels until you get one that's a reasonable size, but still looks good for the particular comic.</p> <p><img src="http://lbrandy.com/blog/wp-content/uploads/2008/10/jpg_vs_png2.png" alt="alt text" /></p> <p>From <a href="http://lbrandy.com/blog/2008/10/my-first-and-last-webcomic/" rel="nofollow">lbrandy.com</a></p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/423018#423018 0 Answer by Mark Ransom for Image compression for webcomics Mark Ransom 2009-01-08T02:16:10Z 2009-01-08T02:16:10Z <p>Between anti-aliasing and gradients, there are probably more colors in the image than you think.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/423033#423033 3 Answer by Norman Ramsey for Image compression for webcomics Norman Ramsey 2009-01-08T02:21:30Z 2009-01-08T02:21:30Z <p><strong>Your assumptions aren't borne out by my data.</strong> My <a href="http://www.questionablecontent.net/" rel="nofollow">favorite webcomic</a> is already distributed as PNG. Converting a 167K PNG file to JPEG using the default compression quality yields a 199K JPEG file. Break-even is somewhere between <code>-quality 60</code> and <code>-quality 65</code>, which is quite a low quality for a JPEG. So, Questionable Content is <em>already</em> compressed lossless and smaller than JPEG.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/423036#423036 2 Answer by coobird for Image compression for webcomics coobird 2009-01-08T02:26:51Z 2009-01-08T02:26:51Z <p>Under certain circumstances, JPEG images will be larger than PNG images.</p> <p>For example, in cases where there is a <em>very simple</em> image, PNG may end up compressing the image better and giving better image quality.</p> <p>Here's an example with some Java code:</p> <pre><code>public static void main(String[] args) { BufferedImage img = new BufferedImage( 256, 256, BufferedImage.TYPE_INT_RGB ); Graphics g = img.getGraphics(); g.setColor(Color.white); g.fillRect(0, 0, 256, 256); g.setColor(Color.black); g.drawLine(0, 0, 255, 255); g.drawLine(255, 0, 0, 255); try { ImageIO.write(img, "jpg", new File("output.jpg")); ImageIO.write(img, "png", new File("output.png")); } catch (IOException e) {} // Don't usually ignore exceptions! g.dispose(); } </code></pre> <p>The above code produces an image with the dimensions of 256 x 256 pixels, and draws two intersecting diagonal lines in the form on an "X".</p> <p>The 256 x 256 image was used to keep the image size to an multiple of 8, as <a href="http://en.wikipedia.org/wiki/JPEG" rel="nofollow">JPEG compression</a> performs a <a href="http://en.wikipedia.org/wiki/JPEG#Discrete_cosine_transform" rel="nofollow">2D DCT transform on 8 x 8 pixel sections of the image</a>. By keeping the image size and location of the line to align within the 8 x 8 pixel section, it will reduce the amount of <a href="http://en.wikipedia.org/wiki/Compression_artifact" rel="nofollow">compression artifacts</a> and improve the quality of the image.</p> <p>(Choosing 256 x 256 was empirical -- I at first used 100 x 100 and noticed that the JPEG image was horrible, so I tried 64 x 64 and it looked better, so I made it larger to simulate a more realistic image size.)</p> <p>After drawing the image, the program generate a JPEG file and a PNG file. (The <a href="http://java.sun.com/j2se/1.4.2/docs/guide/imageio/spec/imageio_guideTOC.fm.html" rel="nofollow">Java ImageIO library</a> uses the default compression ratio of <code>0.75f</code> for the compression quality of the JPEG.)</p> <p>Results:</p> <pre><code>output.png : 1,308 bytes output.jpg : 3,049 bytes </code></pre> <p>Taking a look at the image itself, the JPEG has a little bit of artifacting, but it wasn't very noticeable until I zoomed in with an image editor. Of course, the PNG image is lossless, so it was an exact representation of the original.</p> <p>To conclude, whether an image is smaller with PNG or JPEG is really up to the source -- there are cases where JPEG can be larger than a PNG and yet the PNG can be better quality. Of course, in practice, generally PNG will be larger than JPEG for a given image.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/423058#423058 -1 Answer by Alan Storm for Image compression for webcomics Alan Storm 2009-01-08T02:35:39Z 2009-01-08T16:37:27Z <p>I think the missing piece of information here is <strong>Image Compression is Tied to the Format</strong>. It's certainly possible that someone could come up with a compression algorithm that was/is well suited for the kind of images that web cartoonists create. However, once you took the new uber-comic-image format and emitted a PNG, JPG or GIF, the color information would be subject to the rules of the PNG, JPG or GIF compression mechanism and you'd lose all the benefit of your new image format.</p> <p>Here's another way to think about it. </p> <ol> <li>Save a photo as a low quality JPEG</li> <li>Note the file size</li> <li>Take that low quality jpeg and save-as a 24/32 bit PNG</li> <li>Note the <em>larger</em> file size</li> </ol> <p>The same thing would happen to this mythical uber-comic-image format.</p> <p>The alternative would be getting the major browser vendors to support uber-comic-image nativity. I'll leave the reasons behind that not working as an exercise to the viewer.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/423159#423159 0 Answer by EnderMB for Image compression for webcomics EnderMB 2009-01-08T03:31:34Z 2009-01-08T03:31:34Z <p>As someone who has done a lot of colouring work for cartoons, as well as photo-manipulation work I can safely say that there is often a lot going on inside the average web-comic when compared to a normal photo.</p> <p>Assuming that the image is done in Photoshop or Painter (usually from a Tablet) there are often a number of filters or layers at work in the average web-comic. Shading, reflection, opacity, background images and far more come into the equation and with many of these being straight from filters or layer overlays there are often many colours in place.</p> <p>A lot of the time you have to think of your audience. It is really worth optimising your images if you get 20 visitors a day? I'd probably argue that it is completely down to the size and content of your web-comic. If you can get away with PNG then I'd stick with it. More often than not in web-comics there is little going on to warrant using JPG.</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/423165#423165 0 Answer by ggf31416 for Image compression for webcomics ggf31416 2009-01-08T03:33:11Z 2009-01-08T05:03:49Z <p>I use OPTIPNG to get the best filter (with a sane level) and then I run ADVDEF -4 -z<br /> <a href="http://advancemame.sourceforge.net/comp-readme.html" rel="nofollow">http://advancemame.sourceforge.net/comp-readme.html</a> (Not Advpng because Advpng removes the filters) to optimize the deflate.</p> <p>Also you can try pngout <a href="http://www.advsys.net/ken/utils.htm" rel="nofollow">http://www.advsys.net/ken/utils.htm</a> Has a plugin for Irfanview. It uses the same deflate implementation of Kzip, which is usually even better than 7-zip but much slower.</p> <p>EDIT:<br /> okcancel20031003.gif <a href="http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon?answer=94658#94658">http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon?answer=94658#94658</a> 256 colors 147KB<br /> PNG (Paint) 126KB<br /> PNG (Irfanview) 120 KB </p> <p>PNG (Irfanview) +<br /> Optipng -o5 120KB (525 bytes smaller) 9s<br /> Optipng + ADVDEF 114 KB 9s+0.9s<br /> PngOut 114 KB 6s</p> <p>BMP 273 KB </p> <p>BMP +<br /> 7z (LZMA -fb 273) 107 KB<br /> RAR (Best) 116 KB<br /> BMF -S 90 KB 0.3s<br /> Paq8o10t -4 79 KB 35s</p> http://stackoverflow.com/questions/422902/image-compression-for-webcomics/425058#425058 0 Answer by Jason S for Image compression for webcomics Jason S 2009-01-08T17:05:09Z 2009-01-08T17:35:53Z <p>I've drawn a number of large hand-illustrated circuit diagrams which I scan in as grayscale for use in computerized documents; LZW-compressed TIFF always wins hand over JPEG, both in viewable quality and file size, I think because TIFF can take advantages of RLE encoding for whitespace. I'm not sure whether PNG can do this too, or whether RLE can be extended for multicolor images &amp; not just black/white.</p> <p>edit: I just tried one of my grayscale hand drawings; TIFF can beat PNG by about 2:1 (43K vs. 83K using ImageMagick convert to go from original TIFF -> PNG -> TIFF again to double-check that ImageMagick is producing both file formats and ensure that my original program didn't do a bad job producing the TIFF) but only because TIFF uses 8bits/pixel (grayscale) and PNG uses 24bits/pixel (RGB).</p> <p><strong>edit 2</strong>: never mind, I just was able to use <code>pngcrush -c 0</code> to ensure the image is grayscale. PNGcrush got the RGB version down to 67K and the grayscale down to 34K. Nice!</p> <p>edit 3: Just a point of procedure: It seems to me that it would make a heck of a lot more sense to pick a number of different images of this type to choose as standard benchmarks, and just try different techniques across the benchmark set, rather than just a bunch of stack-overfloids pontificating. This seems like a problem that needs a well-tested empirical solution.</p>