|
|
|
|
|
by iainmerrick
3388 days ago
|
|
Yes, JPEG encoding has a ton of flexibility. You rearrange each block of pixels using the discrete cosine transform, which tends to pack more significant values towards one corner, and then you have lots of freedom over how to quantize those values. See https://en.wikipedia.org/wiki/JPEG#Quantization On top of that, you could tweak the quantized values themselves to make them more compressible. |
|