请问在 linux 下哪些字体可以图形嵌入应用
以下的字体嵌入就失败了,中文显示不出来,也不知道该如何设置src: local 和fontFamily ,很有趣倒置90度的文本框
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white" viewSourceURL="srcview/index.html">
<mx:Style>
@font-face {
src: local("Verdana");
fontFamily: VerdanaEmbedded;
}
Panel {
titleStyleName: panelTitleStyleName;
}
.panelTitleStyleName {
fontFamily: VerdanaEmbedded;
fontWeight: normal;
}
</mx:Style>
<mx:Panel fontFamily="VerdanaEmbedded"
title="Title"
status="status"
width="160"
height="120"
rotation="90">
<mx:Text text="尝试一下中文"
width="100%" />
<mx:ControlBar>
<mx:Label text="ControlBar label" />
</mx:ControlBar>
</mx:Panel>
</mx:Application> 这个和字体有关么? 有的,英文都能写入,中文显示空白,其它编写方式中文是可以正常显示的。 用英文字体名显示不了中文? 不懂,但你mxml中设定了中文字体吗?没看见有中文字体名。
页:
[1]