Lynne Teaches Tech: Why does compressing a JPEG make it look worse, even though putting in a ZIP file makes it look the same?
there are many different methods of file compression. one of the simplest methods is run length encoding (RLE). the idea is simple: say you have a file like this:aaabbbbaaaaayou could store it as:a3b4a5to represent that there are 3 a’s, 4 b’s, etc. you would then simply need a program to… Read More »Lynne Teaches Tech: Why does compressing a JPEG make it look worse, even though putting in a ZIP file makes it look the same?