Compressed image size is bigger than original one #95
-
Hi Clinton, Have a simple method for compressing the JPG images:
During the testing I mentioned that my input test file size is around 110KB and the output one is 140KB. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi Alex, Without the source image, I can't say for sure, but it's likely the source image is encoded with optimized huffman dictionaries, which is something the built-in Windows JPEG codec doesn't do. In short, JPEG compression is done in two parts:
The Windows JPEG codec only supports entropy coding with the standard dictionary, so it can't match other encoders for file size if they use per-image optimized dictionaries or progressive scan. I have, however, recently added a You'll find |
Beta Was this translation helpful? Give feedback.
Hi Alex,
Without the source image, I can't say for sure, but it's likely the source image is encoded with optimized huffman dictionaries, which is something the built-in Windows JPEG codec doesn't do. In short, JPEG compression is done in two parts: