菜鸟教程小白 发表于 2022-12-13 09:08:13

iphone - 来自 CTFontRef 的字体名称


                                            <p><p>我有一个 CTFontRef 变量。</p>

<blockquote>
<p><code>CTFontRef aFontRef;</code></p>
</blockquote>

<p>获取字体大小很容易:</p>

<pre><code>CGFloat aFontSize = CTFontGetSize(aFontRef);
</code></pre>

<p>请帮助我检索字体名称。
我希望 FontName 类似于 <strong>MarkerFelt-Wide</strong>。</p>

<p>但是,当我使用像 </p> 这样的方法时

<pre><code>CTFontCopyFullName(aFontRef)
</code></pre>

<p>我得到 <strong>Marker Felt Wide</strong></p>

<p>干杯
呸呸呸</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看起来您想要 PostScript 名称,您可以通过 <a href="http://developer.apple.com/library/mac/documentation/Carbon/Reference/CTFontRef/Reference/reference.html#//apple_ref/c/func/CTFontCopyPostScriptName" rel="noreferrer noopener nofollow"><code>CTFontCopyPostScriptName()</code></a> 获得该名称.</p>

<p>PostScript 名称是一个内部名称,通常是按名称引用字体的首选方式。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 来自 CTFontRef 的字体名称,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7463551/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7463551/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 来自 CTFontRef 的字体名称