0

Is there a way to fix the Retina Blurry icons on cellphones without using the 2x sizing images hack?

I'm a Front-End developer and the Designer is not avaibable to giving me the icons of the Website at the double of its size.

So, I was wondering if there is any way to keep the original icons size and make it looks correctly on cellphones with Retina display.

1 Answers1

0

Small pixel images are automatically enlarged by the browsers and the quality of the anti aliasing is depending on the rendering engine of the browser.

If you don't want to use the media queries @2 trick you could use svg icons instead as vector graphics are cristal sharp on every screen resolution and ppi.

Edit: As mentioned in the comment below you can disable antialias in browsers as described here: Disable antialising when scaling images

But that will not create eg a sharp round circle out of a 16 pixel graphic as the pixels will still be squared pixels (just enlarged)...

Oops D'oh
  • 941
  • 1
  • 15
  • 34