I use LibJPEG to read JPEG compressed images. Is there a way to get the current compression ratio of the unchanged image?

Thanks for your help!

link|improve this question

By compression ratio, do you mean filsize relative to a BMP file? – Argote Jan 31 '11 at 17:22
oh sry I forgot to say that I load JPEG´s. JPEG´s have a compression ratio. I want to know that. – Van Coding Jan 31 '11 at 17:28
do you have the original bitmap? just do jpegSize / bmpSize. If not, then you cannot know the ratio. I believe there is some metadata tag for the jpeg compression level used, but there's nothing to indicate the source image file size. – tenfour Jan 31 '11 at 17:33
uhm... to ensure we talk about the same thing: every JPEG image has a Quality (or compression ratio, like I called it) from 1 to 100. I want this value, not the ratio between source file and result file. Sorry for the confusion...! – Van Coding Jan 31 '11 at 17:39
feedback

1 Answer

up vote 3 down vote accepted

Do you mean the encoding quality, usually a number 0-100?

That isn't stored - it's used as a guide for the image encode as to how accurate the waves should be, and it's then discarded. There's no field for it in any of the JFIF header structures. As far as I can see there's no formal definition of what this number means across encoders and so you can't precisely determine the effects of any given number anyway.

link|improve this answer
Thanks! This were what I wanted to know ;) – Van Coding Jan 31 '11 at 17:46
You can't even be sure of the meaning of the number, for some 0 is really good, for others 0 is really really bad. – Mark Ransom Jan 31 '11 at 17:56
feedback

Your Answer

 
or
required, but never shown

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