Firefox blurs an image when scaled through css or inline style. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T12:47:52Z http://stackoverflow.com/feeds/question/388492 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style 3 Firefox blurs an image when scaled through css or inline style. Martin Kool 2008-12-23T09:33:45Z 2009-05-12T09:13:14Z <p>Hi</p> <p>When I visually scale an image, firefox 3 blurs it. Firefox 2 and other browsers don't, which is the behavior I expect. This is especially lame for creating a webbased game using png or gif sprites.</p> <p>For example, when showing a 100x100 image in firefox 3 like this:</p> <pre><code>&lt;img src="sprite.gif" width="200" /&gt; </code></pre> <p>or</p> <pre><code>&lt;img src="sprite.gif" style="width:200px; height:200px;" /&gt; </code></pre> <p>it looks blurred in ff3, not in IE.</p> <p>Any ideas on how to prevent this?</p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/388499#388499 4 Answer by olliej for Firefox blurs an image when scaled through css or inline style. olliej 2008-12-23T09:39:42Z 2008-12-23T09:39:42Z <p>You're scaling the image up from its original size -- the desired effect is <em>normally</em> to have smooth scaling, and it would appear FFX3 has started doing this (i assume bilinear filtering). I think if you look at Safari and Opera you'll find they also filter the image.</p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/388502#388502 -1 Answer by Patrik Hägne for Firefox blurs an image when scaled through css or inline style. Patrik Hägne 2008-12-23T09:40:44Z 2008-12-23T09:40:44Z <p>I actually prefer the way FF does it since it uses interpolation when scaling images, in most cases this makes the images look much better than they would in IE. However I guess there can be cases where it's not good, like when using sprites.</p> <p>I don't think there's a way to get around it though.</p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/388504#388504 -1 Answer by Vasil for Firefox blurs an image when scaled through css or inline style. Vasil 2008-12-23T09:41:58Z 2008-12-23T09:41:58Z <p>You should avoid scaling the image on the clientside. Scaling an image upwards is like zooming, the browser doesn't have the information for the image to display it in higher resolution than it really is, so you can't do that without bluring the image, maybe it's not noticebale in IE, try changing 200px to 400px.</p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/388731#388731 3 Answer by pixelbeat for Firefox blurs an image when scaled through css or inline style. pixelbeat 2008-12-23T12:07:56Z 2008-12-23T12:07:56Z <p>I was just wondering about this myself, but it seems it's hardcoded in ff3 :( <a href="http://forums.mozillazine.org/viewtopic.php?f=7&amp;t=752735&amp;p=5008845" rel="nofollow">http://forums.mozillazine.org/viewtopic.php?f=7&amp;t=752735&amp;p=5008845</a></p> <p>ff2 didn't do any interpolation</p> <p>IE doesn't by default, but you can turn it on: <a href="http://www.joelonsoftware.com/items/2008/12/22.html" rel="nofollow">http://www.joelonsoftware.com/items/2008/12/22.html</a></p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/657815#657815 1 Answer by nikow for Firefox blurs an image when scaled through css or inline style. nikow 2009-03-18T11:11:01Z 2009-03-27T09:37:16Z <p>Unfortunately I don't have a solution for this, but this is a complete dealbreaker for a large number of users (e.g. pixel artists). If you are affected by this please send feedback to <a href="http://hendrix.mozilla.org/" rel="nofollow">http://hendrix.mozilla.org/</a> and vote for the <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=423756" rel="nofollow">corresponding bug</a>.</p> <p>It is disappointing that Mozilla is ignoring this issue. For the many affected users it means that there is no other choice than to switch browsers. IE has a <a href="http://msdn.microsoft.com/en-us/library/ms530822.aspx" rel="nofollow">CSS property</a> to select the resizing filter, so this seems to be the best choice.</p> <p>Here is the <a href="http://code.google.com/p/chromium/issues/detail?id=1502" rel="nofollow">bug report</a> for Google Chrome, which has the same problem as Firefox. I don't know about Opera, but I heard that they use some heuristics for a saner automatic scaling.</p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/767664#767664 3 Answer by Martin Kool for Firefox blurs an image when scaled through css or inline style. Martin Kool 2009-04-20T10:15:45Z 2009-04-20T10:15:45Z <p>I discovered this new feature of FireFox:</p> <p><a href="http://developer.mozilla.org/En/CSS/Image-rendering" rel="nofollow">http://developer.mozilla.org/En/CSS/Image-rendering</a></p> <p>So putting this in your CSS will fix it:</p> <pre><code>image-rendering: -moz-crisp-edges; </code></pre> <p>Thought I'd share this info. Sorry for answering my own question ;)</p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/767703#767703 0 Answer by kbrosnan for Firefox blurs an image when scaled through css or inline style. kbrosnan 2009-04-20T10:32:16Z 2009-04-20T10:32:16Z <p><a href="http://developer.mozilla.org/En/CSS/Image-rendering" rel="nofollow">http://developer.mozilla.org/En/CSS/Image-rendering</a> only applies to the current trunk builds of Firefox (Minefield/3.6a1pre/Gecko 1.9.2). This feature is not in Firefox 3.0 and won't be in the upcoming 3.5 release. The first release with that option will be the next major release after 3.5 currently in the early planning stages with an estimated release in 2010.</p> http://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style/851895#851895 0 Answer by elliot100 for Firefox blurs an image when scaled through css or inline style. elliot100 2009-05-12T09:13:14Z 2009-05-12T09:13:14Z <p>I wonder if you would get better results if you created the sprites at the largest size you expect them to be viewed, and then scale them down as required?</p>