JPEG vs PNG vs BMP vs GIF vs SVG

121,276

Solution 1

From What is the difference between TIFF, GIF, JPG, JPEG, PNG, and a BMP file?

BMP - Bitmap. This was probably the first type of digital image format that I can remember. Every picture on a computer seemed those days to be a BMP. In Windows XP the Paint program saves its images automatically in BMP. However, in Windows Vista and later images are now saved to JPEG. BMP is the basis platform for many other file types.

JPG / JPEG - (Joint Photographic Experts Group) Jpeg format is used for color photographs, or any pictures with many blends or gradients. It is not good with sharp edges and tends to blur them a bit unless stored at high quality. This format became popular with the invention of the digital camera. Most, if not all, digital cameras download photos to your computer as a Jpeg file. Obviously the digital camera manufacturers see the value in high quality images that ultimately take up less space.

GIF - (Graphics Interchange Format) Gif format is best used for text, line drawings, screenshots, cartoons, and animations. Gif is limited to a total number of 256 colors or less, so Gif images are relatively small. It is commonly used for fast loading web pages. It also makes a great banner or logo for your web-page. Animated pictures can also be saved in GIF format as a sequence of static images. For example, a flashing banner would be saved as a Gif file.

PNG - (Portable Networks Graphic) This lossless formats is one of the best image formats. It was not always compatible with all web browsers or image software, but nowadays it is the best image format to use for website. I use .png for logos and screenshots. One of its most astonishing abilities is being able to compress images losslessly (without loss of pixels), although the final compressed size varies between image editors.

TIFF - (Tagged Image File Format) This file format has not been updated since 1992 and is now owned by Adobe. It can store an image and data (tags) in the one file. TIFF can be compressed, but it is rather its ability to store image data in a lossless format that makes a TIFF file a useful image archive, because unlike standard JPEG files, a TIFF file using lossless compression (or none) may be edited and re-saved without losing image quality. This file is commonly used for scanning, faxing, word processing, and so on. It is no longer a common file format to use with your digital photos, as jpeg is great quality and takes up less space.

Solution 2

In xkcd style from lbrandy.com:

alt text

Solution 3

You should be aware of a few key factors...

First, there are two types of compression: Lossless and Lossy.

  • Lossless means that the image is made smaller, but at no detriment to the quality.
  • Lossy means the image is made (even) smaller, but at a detriment to the quality. If you saved an image in a Lossy format over and over, the image quality would get progressively worse and worse.

There are also different colour depths (palettes): Indexed color and Direct color.

  • Indexed means that the image can only store a limited number of colours (usually 256), controlled by the author, in something called a Color Map
  • Direct means that you can store many thousands of colours that have not been directly chosen by the author

BMP - Lossless / Indexed and Direct

This is an old format. It is Lossless (no image data is lost on save) but there's also little to no compression at all, meaning saving as BMP results in VERY large file sizes. It can have palettes of both Indexed and Direct, but that's a small consolation. The file sizes are so unnecessarily large that nobody ever really uses this format.

Good for: Nothing really. There isn't anything BMP excels at, or isn't done better by other formats.

BMP vs GIF


GIF - Lossless / Indexed only

GIF uses lossless compression, meaning that you can save the image over and over and never lose any data. The file sizes are much smaller than BMP, because good compression is actually used, but it can only store an Indexed palette. This means that for most use cases, there can only be a maximum of 256 different colours in the file. That sounds like quite a small amount, and it is.

GIF images can also be animated and have transparency.

Good for: Logos, line drawings, and other simple images that need to be small. Only really used for websites.

GIF vs JPEG


JPEG - Lossy / Direct

JPEGs images were designed to make detailed photographic images as small as possible by removing information that the human eye won't notice. As a result it's a Lossy format, and saving the same file over and over will result in more data being lost over time. It has a palette of thousands of colours and so is great for photographs, but the lossy compression means it's bad for logos and line drawings: Not only will they look fuzzy, but such images will also have a larger file-size compared to GIFs!

Good for: Photographs. Also, gradients.

JPEG vs GIF


PNG-8 - Lossless / Indexed

PNG is a newer format, and PNG-8 (the indexed version of PNG) is really a good replacement for GIFs. Sadly, however, it has a few drawbacks: Firstly it cannot support animation like GIF can (well it can, but only Firefox seems to support it, unlike GIF animation which is supported by every browser). Secondly it has some support issues with older browsers like IE6. Thirdly, important software like Photoshop have very poor implementation of the format. (Damn you, Adobe!) PNG-8 can only store 256 colours, like GIFs.

Good for: The main thing that PNG-8 does better than GIFs is having support for Alpha Transparency.

PNG-8 vs GIF

Important Note: Photoshop does not support Alpha Transparency for PNG-8 files. (Damn you, Photoshop!) There are ways to convert Photoshop PNG-24 to PNG-8 files while retaining their transparency, though. One method is PNGQuant, another is to save your files with Fireworks.


PNG-24 - Lossless / Direct

PNG-24 is a great format that combines Lossless encoding with Direct color (thousands of colours, just like JPEG). It's very much like BMP in that regard, except that PNG actually compresses images, so it results in much smaller files. Unfortunately PNG-24 files will still be much bigger than JPEGs, GIFs and PNG-8s, so you still need to consider if you really want to use one.

Even though PNG-24s allow thousands of colours while having compression, they are not intended to replace JPEG images. A photograph saved as a PNG-24 will likely be at least 5 times larger than a equivalent JPEG image, with very little improvement in visible quality. (Of course, this may be a desirable outcome if you're not concerned about filesize, and want to get the best quality image you can.)

Just like PNG-8, PNG-24 supports alpha-transparency, too.


SVG - Lossless / Vector

A filetype that is currently growing in popularity is SVG, which is different than all the above in that it's a vector file format (the above are all raster). This means that it's actually comprised of lines and curves instead of pixels. When you zoom in on a vector image, you still see a curve or a line. When you zoom in on a raster image, you will see pixels.

For example:

PNG vs SVG

SVG vs PNG

This means SVG is perfect for logos and icons you wish to retain sharpness on Retina screens or at different sizes.

Additionally, SVG files are written using XML, and so can be opened and edited in a text editor, that it can be manipulated on the fly, if you wish. For example, you could use JavaScript to change the colour of an SVG icon on a website much like you would some text (ie. no need for a second image).

I hope that helps!

Solution 4

The existing answers include very little technical data, so I'll include that here.

  • JPEG: up to 24-bit color (possibly more?), variable (usually high) compression, lossy, no alpha support
  • PNG: up to 48-bit color, moderate compression, lossless, alpha support
  • BMP: up to 24-bit color, very little compression, lossless, alpha support
  • GIF: up to 8-bit color, little compression, lossless, transparency support, animation support

Color Depth

  • 8-bit color == 256 colors
  • 24-bit color == 16,777,216 colors
  • 48-bit color == 281,474,976,710,656 colors

Most computer monitors run at 24-bit color depth. The human eye can distinguish about that many colors. Additional color depth is mostly to be able to retain information from a sensor so that manipulation of a photograph has more data to work with. Trying to represent a photograph in 8-bit color is going to result in graininess.

Compression

This basically refers to how large the final file will be. More compression equals a smaller file. However, JPEG attains small file sizes by throwing data away. This is referred to as "lossy" compression, because you can never get the original uncompressed data back. Its compression is also optimized for photographs where high-contrast edges are uncommon. As stated in other answers, it's a bad choice for anything other than photographs.

Alpha/Transparency

Alpha refers to transparency, but it implies that there's more than one level of transparency. GIF has the ability to define transparent pixels, but it's either opaque or 100% transparent, and "transparent" gets used as one of the 256 colors. PNG and BMP have the ability to mark each pixel as opaque, transparent, or partially transparent, like a piece of colored glass. Most commonly, there are 256 levels of transparency, though PNG can actually have up to 65,536 levels. JPEG has no support for transparency.

Animation

Effectively, of these formats, only GIF has any support for animation. There are specifications for animation with PNG (MNG, APNG) and JPEG (MJPEG), but they are not widely supported. (APNG works in recent versions of Firefox and Opera.) In practice, most animations you see on web pages are implemented in Flash.

Solution 5

  • Use GIF if the image has few colors (like icons). Can also be used for animated images (like ad banners).
  • Use JPG if the image has many colors (like photos). JPEG is the same thing.
  • Use BMP if you want to save the image without compression. Much larger filesize!
  • Use PNG if you want to publish the image on the web and be up-to-date on modern standards. Pros: Suitable as modern replacement for both GIF and JPG, and is an open standard, and allows transparency. Cons: Not supported by older software, and file size can be larger than comparable GIF or JPG.
Share:
121,276

Related videos on Youtube

Narek
Author by

Narek

Updated on September 17, 2022

Comments

  • Narek
    Narek over 1 year

    I would like to know which one of these formats requires less memory for the same quality of the picture, and what are the main differences between these formats.

  • Andrew Coleson
    Andrew Coleson over 14 years
    +1 for practical considerations of when to use each.
  • Paul McMillan
    Paul McMillan over 14 years
    Be careful about using PNGs. As a lossless format, they're generally unsuited to photographs and the like, due to file size. Definitely not a "modern replacement" for all purposes. Transcoding from JPG to PNG would be really stupid.
  • UNK
    UNK over 14 years
    Well, most modern browsers support it, but it's little known. IE8 doesn't support it, I don't think (but can read it as PNG, so displays the first frame)
  • Murray Furtado
    Murray Furtado over 14 years
    @Paul - I agree, it's certainly not useful for all purposes and in particular not for photos, but when used for web graphics it does replace JPG.
  • Arjan
    Arjan over 14 years
    I don't think there's ever a need for BPM nowadays.
  • Assaf Levy
    Assaf Levy over 14 years
    Illustrates the point nicely :) (even if I've never seen anyone advocate such 'Always JPEG!' policy)
  • Arjan
    Arjan over 14 years
    IE has supported PNG since some version 4.x (5 on Mac), but just not transparent PNG.
  • Johan
    Johan over 14 years
    +1 Since this picture illustrates the jpeg problem so well...
  • Isaac
    Isaac over 14 years
    Be aware that without a "hack" of sorts, IE6 still does not support alpha transparency in PNG files i.e. areas of transparency that are semi opaque
  • Murray Furtado
    Murray Furtado over 14 years
    @Arjan, there is need when you're working with low-tech customers (who still use Win2k, for instance). Plus, it's what Windows Paint defaults to, so it will be de facto standard for some time yet.
  • Tim Büthe
    Tim Büthe over 14 years
    I wish I could double upvote! I send this to everybody who sends me crappy jpegs!
  • Isaac
    Isaac over 14 years
    ...and a surprising amount of people still use IE6 (tinyurl.com/56kp). And MS want to support it until 2014! :( (tinyurl.com/qvdyn5)
  • Teddy
    Teddy over 14 years
    Are you sure that's a real XKCD? Please link to the original.
  • Robert MacLean
    Robert MacLean over 14 years
    @Teddy - you were absolutely right. I misread when I copied it, it said xkcd style, not from xkcd. I have fixed the text and link.
  • Arjan
    Arjan over 14 years
    © 2008 Louis Brandy. All Rights Reserved....?
  • Independent
    Independent over 14 years
    jpg allows for different levels of compression. A more highly compressed file will suffer a greater loss in quality. It is up to you to decide how much quality you want vs how big the file is. (You can't regain quality once it is lost.)
  • Gnoupi
    Gnoupi over 14 years
    Little note, on file size between PNG and JPG. If you can accept a loss, then JPG is a better choice, lighter indeed. However, if you want to save an image without loss, you should prefer PNG over a JPG with "100% quality", because the PNG will be smaller then.
  • Joey
    Joey over 14 years
    BMP: This is not the basis for other file formats. As far as I know the BMP header and file structure are not shared with other formats (contrary to TIFF, for example). JPEG: It was created and existed on the web way before digital cameras became prevalent. Also many digital cameras allow for saving a "raw" format which usually is a TIFF, albeit with vendor-specific contents. GIF: Not restricted to 256 colors per image, only to 256 colors per frame (see en.wikipedia.org/wiki/Graphics_Interchange_Format#True_color‌​).
  • Joey
    Joey over 14 years
    TIFF: The prevalent file and container format for raw images from digital cameras (the non-point-and-shoot ones). TIFF allows for nearly arbitrary data (hence tagged) in it which also means that it supports arbitrary compression methods from LZW (GIF), LZ77 (PNG) to JPEG and others. Also TIFF allows for multiple images (pages) in one file.
  • Kornel
    Kornel over 14 years
    @joshcomley IE6 displays paletted PNGs with 1-bit alpha just fine without any hacks. It only has problems with PNG variants that have no GIF equivalent.
  • Kornel
    Kornel over 14 years
    IE6 actually even supports transparent PNG if it has GIF-like transparency. Only PNG with full alpha isn't supported.
  • Kornel
    Kornel over 14 years
    PNG is almost always smaller than GIF. It has superior compression scheme. When it's larger than same-looking GIF, it's usually fault of lousy software (e.g. Photoshop before CS2). Use paletted (not 24-bit!) PNG and fix them with PNG optimizer: imageoptim.pornel.net and you'll never want to waste bandwidth on GIFs again.
  • Joey
    Joey over 13 years
    @porneL: Even truecolor PNGs with 1-bit alpha are displayed fine. It's just the 8-bit alpha channel that has problems in IE 6.
  • JJ_Australia
    JJ_Australia about 13 years
    @Josh: o rly?
  • camster342
    camster342 almost 13 years
    While the answer is good at answering the difference of the picture formats in terms of history and general usage, the original answer asked about relative sizes and quality too...
  • harrymc
    harrymc almost 13 years
    @camster342: Why do you pick on an old answer dating from 2009? And why, when the poster has accepted my answer, you have decided that he is wrong!
  • James P.
    James P. almost 13 years
    Good illustration. Watch out for artifacts caused by compression. I think JPEG like video compression formats has the problem where solid red zones will tend to "bleed" on the edges.
  • harrymc
    harrymc almost 13 years
    @paradroid: You are welcome to write your own.
  • harrymc
    harrymc almost 13 years
    @Johnny W: Thanks. I changed some links and improved the description of TIFF.
  • dtech
    dtech over 12 years
    Note that in the last page, you could've gotten at-least-equal quality at the same-or-lower filesize with PNG-8 instead of PNG-24
  • Django Reinhardt
    Django Reinhardt over 12 years
    That's true. Plus there's PNG-8 with Alpha Transparency, but I suppose I was trying to show its ultimate strengths. Maybe I'll expand on it.
  • Rob
    Rob over 12 years
    You're wrong about PNG not supporting animation. PNG can do it fine, most viewers and browsers don't support it. en.wikipedia.org/wiki/APNG Firefox supports it pretty well, it seems. people.mozilla.com/~dolske/apng/demo.html
  • Django Reinhardt
    Django Reinhardt over 12 years
    Wow. I never knew that. Thanks for pointing it out! I guess with no Photoshop support (they really don't like PNG do they?) and no Internet Explorer/Safari/Chrome support, it's pretty useless for most purposes. Thanks for sharing, though.
  • Synetech
    Synetech about 12 years
    The comic is funny, but it doesn’t really answer the question; maybe only one part.
  • Synetech
    Synetech about 12 years
    Me likey the PCX. Way back when decide to learn assembler, for my first program, I wrote a PCX viewer. It was quite educational. (I did not write a JPG viewer). :-D
  • boehj
    boehj about 12 years
    Fantastic answer!
  • Lee Harrison
    Lee Harrison about 11 years
    TIFF file format is the de-facto format for saving/archiving/transferring of engineering drawings in an image form. They can be extremely large, but do not take up a large.
  • Paul
    Paul over 9 years
    Facebook has for example this 'Always JPEG' policy. I upload a nice 99 KB lossless PNG image and Facebook converts it to an ugly 175 KB JPEG.
  • mpy
    mpy over 9 years
    Nice overview. But why is BMP marked as "lossless: false" in the table? In the text you state IMHO correctly that BMP is indeed lossless.
  • Hanna
    Hanna over 8 years
    Would love to see SVGs get added to this answer too.
  • Hanna
    Hanna over 8 years
    @DjangoReinhardt I know you included an example in your answer, but as far as SVGs vs PNGs are concerned, under what circumstances might we see a bigger SVG (in file size) vs a PNG?
  • Django Reinhardt
    Django Reinhardt over 8 years
    @Johannes Great question. There are some downsides to SVG, especially if they're particularly complicated (or badly saved -- but that's the author's fault, not the file format's). I'll try and add something that answers this -- although I suspect that an SVG will always be smaller (or equal in size) to a PNG.
  • ysap
    ysap over 8 years
    I know this is an old thread, and thank you for the answer, but note that BMP is optionally compressed with a very simplistic, lossless, RLE compression.
  • jiggunjer
    jiggunjer over 8 years
    PNG does not support animation. APNG != PNG. Different developers. Anyone can make a custom format that is compatible with PNG decoders; all you have to do is drop the extra features.
  • jiggunjer
    jiggunjer over 8 years
    Another fun factoid: BMP files have a size similar to PNG if you zip them.
  • BradChesney79
    BradChesney79 about 6 years
    @Arjan, although the comic looks like it is from xkcd and has the same style of clever tech humor, it was actually made by that other guy-- so he attributed the copyright to himself and not Randall of xkcd.
  • Arjan
    Arjan about 6 years
    True, @BradChesney79, but see the edit history superuser.com/posts/55706/revisions But as all that is old, I guess I'll remove my comments (including this one).
  • JAT86
    JAT86 almost 6 years
    Any other reason why PNG is NOT recommended for photographs, aside from its bigger file size compared to JPEG? I first scanned my old photos in JPEG format, then later re-scanned them in PNG after realizing I was scanning a photo that would be stored in a lossy format.