I have noticed a strange feature while conducting some experiments. Look at the following. My large profile image and small profile image looks different.
I can't believe that.
You can see that my profile pictures look differently here and here. Still not convinced? Upload this and check how your profile images are changed.
Why does this happen?
I uploaded this to change my profile image. The result was interesting. The large profile image was almost black, but the small was white. I thought that Codeforces uses Nearest-neighbor interpolation to scale images in proper sizes.
Nearest-neighbor interpolation selects the value of nearest point and does not consider the values of neighboring points at all. I tracked which values are used and eventually found how to make profile images look different.
So, how did you do it?
I used this python script to create a 3600x3600 image that will make your profile images look different. Requirements are Python 3 and PIL. First, save a 300x300 image that you would like you use as the main profile picture as 'pic1.png'. Likewise, save a 80x80 image for the sub profile picture as 'pic2.png'. Finally, run the script and it will merge these images into a 3600x3600 image named 'pic.png'.
Have fun! XD