WEB开发网
开发学院图形图像Flash Flash 8 位图旋转后消除锯齿的办法 阅读

Flash 8 位图旋转后消除锯齿的办法

 2006-12-19 10:36:35 来源:WEB开发网   
核心提示:Flash8中的位图如果旋转的话,会有锯齿,Flash 8 位图旋转后消除锯齿的办法,如果图片已经在库中,解决方法是双击库中的图片进入属性面板,勾选“允许平滑”,如果是外部导入图片

Flash8中的位图如果旋转的话,会有锯齿,如果图片已经在库中,解决方法是双击库中的图片进入属性面板,勾选“允许平滑”。如果是外部导入图片,可以用下面的方法解决,此方法来源于网络,原始出处不详:

_global.smoothImageLoad = function(imgURL, targetMovie) {
var i=0
do { i++ } while (eval("_root.smoothImageLoadTemp"+i) != undefined)
tmc = _root.createEmptyMovieClip("smoothImageLoadTemp"+i, _root.getNextHighestDepth())
tmc.createEmptyMovieClip("ti", tmc.getNextHighestDepth())
tmc.tm = targetMovie
with(tmc) {
tmcl = new MovieClipLoader()
tmcl.onLoadComplete = function() {
ti.onEnterFrame = function() {
pixelData = new flash.display.BitmapData(ti._width, ti._height);
pixelData.draw(ti);
tm.attachBitmap(pixelData, 1, true, true);
tm.smoothImageLoadComplete()
removeMovieClip(ti._parent)
}
}
tmcl.loadClip(imgURL, tmc.ti)
}
}
smoothImageLoad("xxx.jpg", mymc);

Tags:Flash 位图 旋转

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接