Firefox blurs an image when scaled through css or inline style. - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T12:47:52Zhttp://stackoverflow.com/feeds/question/388492http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/388492/firefox-blurs-an-image-when-scaled-through-css-or-inline-style3Firefox blurs an image when scaled through css or inline style.Martin Kool2008-12-23T09:33:45Z2009-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><img src="sprite.gif" width="200" />
</code></pre>
<p>or</p>
<pre><code><img src="sprite.gif" style="width:200px; height:200px;" />
</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#3884994Answer by olliej for Firefox blurs an image when scaled through css or inline style.olliej2008-12-23T09:39:42Z2008-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-1Answer by Patrik Hägne for Firefox blurs an image when scaled through css or inline style.Patrik Hägne2008-12-23T09:40:44Z2008-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-1Answer by Vasil for Firefox blurs an image when scaled through css or inline style.Vasil2008-12-23T09:41:58Z2008-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#3887313Answer by pixelbeat for Firefox blurs an image when scaled through css or inline style.pixelbeat2008-12-23T12:07:56Z2008-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&t=752735&p=5008845" rel="nofollow">http://forums.mozillazine.org/viewtopic.php?f=7&t=752735&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#6578151Answer by nikow for Firefox blurs an image when scaled through css or inline style.nikow2009-03-18T11:11:01Z2009-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#7676643Answer by Martin Kool for Firefox blurs an image when scaled through css or inline style.Martin Kool2009-04-20T10:15:45Z2009-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#7677030Answer by kbrosnan for Firefox blurs an image when scaled through css or inline style.kbrosnan2009-04-20T10:32:16Z2009-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#8518950Answer by elliot100 for Firefox blurs an image when scaled through css or inline style.elliot1002009-05-12T09:13:14Z2009-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>