Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is was wondering, if exists a significant difference in the decompression process of these two types of image, which is slower, JPEG or PNG?

share|improve this question
Which is slower, playing poker, or playing chess? It depends on the players - just like which compression method is slower depends on the software. – Borealid Jan 27 '12 at 0:09
6  
Well, JPEG quality 100 will be near instant as nothing is actually being compressed! You need to refine your question further. Actually, you should probably just throw it out. Why? JPEG and PNG compression are made to work on different types of inputs. Have something like a real life image (i.e., a photo of yourself)? Use JPEG, that's what it was made for. A computer generated image should not be compressed with JPEG however and PNG is a much better choice. The question itself shows a lack of understanding on the subject. – Ed S. Jan 27 '12 at 0:12
Wow, tough crowd. Clearly the first thing you didn't know (and that you should be aware of by having asked the question) is that it depends on some things. Ed's answer is a good start in telling you what it depends on. I don't thing the chess and poker answer was too helpful, though. ;~) – Jim Jan 27 '12 at 0:30
It is not a real world scenario, and I am not going to change the format on performance, it was just something I was wondering and though it would be a good question to discuss with the community... – André Puel Jan 27 '12 at 1:05
@EdS., even at 100% JPEG is still encoded with DCT. I don't think the compression quality matters at all, except that low quality means a smaller file which means fewer bytes to read! – Mark Ransom Jan 27 '12 at 1:31

1 Answer

up vote 2 down vote accepted

There are way too many factors at play here. Consider the two formats. PNG images if compressed are compressed with zlib, which is a lossless compression. Therefore, you could measure the performance of decompression of PNG based on the decompression rate of zlib. PNGs do not have to be compressed though (no zlib compression performed).

JPEG is a completely and utterly different beast. There are dozens of different encodings of JPEGs, not to mention JPEG-Lossless. There is JPEG arithmetic encodings (formerly patented) and the more common JPEG Huffman encodings, along with dozens of combinations of each. There are way too many variables in JPEG images to get into.

Unfortunately, there's not going to be a good answer to this question. There's just not enough information to give a definitive answer. Even if there was, it would be extremely application specific, or worse, interaction with your application specific.

share|improve this answer
Re: "PNGs do not have to be compressed though, which is the concept of a lossless PNG": That makes it sound like you choose either compression or losslessness; but in reality, PNGs normally (always?) use lossless compression. – ruakh Jan 27 '12 at 1:34
Good distinction, this is correct. The compression of data in a PNG is lossless, which is not true of every (most) JPEG encoding. I simply meant that the data does not have to have any compression. – greg Jan 27 '12 at 2:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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