I have an zoomable image in the website. When the image is zoomed out to a large extend it appears very SHARP and ugly.
I tried using image-rendering : opimizequality, optimizespeed CSS but did not work.
Is there any other way out.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to
image-renderingon MDC,image-renderingis currently only supported in Firefox 3.6. A similar property,-ms-interpolation-mode, is available for IE7 and IE8. Other browsers don’t seem to have this feature (yet).As latze mentioned, your best bet is to edit the image itself, scaling it to the level you need. I’m not sure, but you may try using
<canvas>to perform the interpolation you desire.