在AS3中,Bitmap.smoothing使用什么算法作为默认算法?
双线性、三线、双三角还是其他?
发布于 2013-09-13 13:24:00
它使用双线性..。
看“光滑”财产..。
US/FlashPlatform/reference/actionscript/3/flash/display/GraphicsBitmapFill.html#smooth
发布于 2013-09-19 20:44:44
当位图维数为偶数时,双线性与自动mipmap。例如,100将使用2个mipmap级别(100/2 = 50,50/2 = 25),90将使用一个mipmap级别(90/2 = 45)。
更多信息:http://www.kaourantin.net/2007/06/mip-map-what.html
演示使它变得更明显--它是双线性的:http://www.kaourantin.net/2007/06/mip-map-what.html
https://stackoverflow.com/questions/18785164
复制相似问题