如何关闭嵌入字体的抗锯齿功能
我有一个来自 www.fontsforflash.com 的像素字体。我使用 flex 嵌入了它,然后将 swf 加载到 flash CS4 中以使其可用。但它非常模糊,我可以找到一种方法来关闭 as3 中的抗锯齿功能。
它的大小合适,并且放置有整数。我嵌入此方法的原因是因为我不想加载整个字体库。
有没有办法关闭抗锯齿或者有更好的方法来嵌入我的字体?
谢谢
I have a pixel font from www.fontsforflash.com. I have embedded it using flex then loaded the swf in flash CS4 to make it available. But its very blurry and I can find a way to turn off anti-aliasing in as3.
Its the right size and placed with whole numbers. The reason I have embedded this method is because I don't want to load an entire font library.
Is there a way I can turn off anti-aliasing or is there a better way to embed my font?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您嵌入字体时,请确保在“字体符号属性”面板(在 Flash 中)中选中“位图文本”复选框,以确保字体没有抗锯齿。
我不记得 CS4 是否有此选项,但在 Flash CS5 中您可以选择“查看”>“捕捉>对齐像素,以便您放置的所有资源都将具有舍入的 x 和 y 坐标。它将执行与 PatrickS 发布的代码相同的操作。
when you embed your font make sure you select the "bitmap text" check box in the Font Symbol Properties panel (in Flash) to insure the font has no anti-alias.
i don't recall if CS4 had this option, but in Flash CS5 you can select View > Snapping > Snap To Pixels so that all of your placed assets will have rounded x and y coordinates. it will do the same thing as the code posted by PatrickS.
如果它是像素字体,请不要忘记 x & y 值必须是整数。你可能需要做这样的事情。
对于父母来说可能也是同样的事情!
If it's a pixel font , don't forget that the x & y values must be integers. You'll probably need to do something like this.
and probably the same thing for the parent!