
January 30th, 2013, 05:50 PM
|
 |
Lost in code
|
|
|
|
|
That's a consequence of reducing the size of the image, you can't stop it except by not resizing the image.
A 2000x2000 image has 4 million pixels. A 400x400 image only has 160k pixels. Therefore, as part of the resizing process you must discard 3.84 million pixels of data.
Image editors do this using algorithms that attempt to preserve as much of the image as possible by merging multiple pixels together. For example, if it merges a black pixel and a white pixel that are right next to each other, you end up with a grey pixel. This is why parts of the image become faint.
This happens all the time, however on some images it is more noticeable than on others simply due to the position and colors of the pixels.
|