缩放图像时禁用antialising [复制](Disable antialising when s

2019-07-17 16:01发布

可能重复:
如何拉伸图像无抗锯齿

它是在任何可能的方式来禁用抗锯齿扩大图像时?

现在,我得到的东西看起来是这样的:

使用下面的CSS代码:

#bib { width:104px;height:104px;background-image:url(/media/buttonart_back.png);background-size:1132px 1360px;
background-repeat:no-repeat;}

我想,是这样的:

总之,任何CSS标志, 禁止从扩大的图像时,保留硬边缘抗锯齿。

任何JavaScript黑客或类似的也欢迎。

(是的,我知道,PHP和ImageMagick的可以做到这一点为好,但希望有一个基于CSS的解决方案。)

更新以下已建议:

image-rendering: -moz-crisp-edges;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;

但是,这似乎并没有对背景图像的工作。

Answer 1:

试试这个,它是在所有浏览器中取出修复。

img { 
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

}

资料来源:

http://nullsleep.tumblr.com/post/16417178705/how-to-disable-image-smoothing-in-modern-web-browsers

http://updates.html5rocks.com/2015/01/pixelated

GitaarLAB



Answer 2:

CSS在Firefox只适用:

img { image-rendering: -moz-crisp-edges; } 

它的工作对我来说( 火狐16.0)



文章来源: Disable antialising when scaling images [duplicate]