如何关闭嵌入字体的抗锯齿功能

发布于 2024-09-29 02:24:26 字数 210 浏览 4 评论 0原文

我有一个来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无所谓啦 2024-10-06 02:24:26

当您嵌入字体时,请确保在“字体符号属性”面板(在 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.

一城柳絮吹成雪 2024-10-06 02:24:26

如果它是像素字体,请不要忘记 x & y 值必须是整数。你可能需要做这样的事情。

textfield.x = Math.round( whateverX );
textfield.y = Math.round( whateverY );

对于父母来说可能也是同样的事情!

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.

textfield.x = Math.round( whateverX );
textfield.y = Math.round( whateverY );

and probably the same thing for the parent!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文