使用 ActionScript 仅嵌入字体中选定的字符?

发布于 2024-07-24 01:08:12 字数 350 浏览 2 评论 0原文

我想仅嵌入字体中的字符子集(例如仅嵌入一定数量的汉字而不是整个字符集)。

我知道如何执行此操作的传统方法是使用下面概述的“包含这些字符”输入框方法:

http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00000277.html

有没有办法只使用 ActionScript 做同样的事情? (并且不使用 Flex)

I would like to embed just a subset of characters from a font (for example only a certain number of Chinese characters instead of the whole character set).

The traditional way I've known how to do this is using the "Include these characters" input box method outlined below:

http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00000277.html

Is there a way to do the equivalent using only ActionScript? (and without using Flex)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

生寂 2024-07-31 01:08:12

可以仅使用带有嵌入元标记的动作脚本来嵌入字体。 例如:

[Embed(source = 'myfont.ttf', fontFamily = "MyFont", unicodeRange = 'U+0041-U+005A,U+0061-U+007A')]
var FontClass :  Class;

请参阅此处了解更多信息。

Fonts can be embeded using just actionscript with the embed metatag. For example:

[Embed(source = 'myfont.ttf', fontFamily = "MyFont", unicodeRange = 'U+0041-U+005A,U+0061-U+007A')]
var FontClass :  Class;

See here for more information.

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