Flash技巧教程:as3把2D图片分析成文本文本功能
作者 凌众技术
来源 网页制作
浏览
发布时间 2012-07-03
for (var y:int = 0; y < bmd.height;y++ ) { if (bmd.getPixel(x,y)!=0xffffff) { c++; } } } return c / ttf.width / ttf.height; } private function getR(color:uint):uint { return color << 8 >>> 24; } private function getG(color:uint):uint { return color << 16 >>> 24; } private function getB(color:uint):uint { return color << 24 >>> 24; } private function getGray(color:uint):uint { return getR(color) * 0.299 + getG(color) * 0.587 + getB(color) * 0.114; } private function browse(e:Event):void { file = new FileReference(); file.browse(); file.addEventListener(Event.SELECT, onSelect); } private function onSelect(e:Event):void { file.load(); file.addEventListener(Event.COMPLETE, onLoad); } private function onLoad(e:Event):void { loader.loadBytes(file.data); } private function onLoad2(e:Event):void {   |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Flash AS3教程:大量对象的碰撞测试下一篇: Flash AS3单例模式通用类写法
关于Flash技巧教程:as3把2D图片分析成文本文本功能的所有评论