gpt4 book ai didi

iphone - 字体在 iPhone 上的位置?

转载 作者:行者123 更新时间:2023-12-03 18:58:08 27 4
gpt4 key购买 nike

我正在 iPhone 项目中使用 FreeType2 库,并且如果可能的话,我尝试简单地从系统加载 TTF 文件。

FT_Library  library;
FT_Face face;
int error;


error = FT_Init_FreeType( &library );

if ( error == 0 )
printf("Initialized FreeType2\r\n"); /* Prints */

error = FT_New_Face(library, "/System/Library/Fonts/Helvetica.ttf", 0, &face);

if ( error == FT_Err_Cannot_Open_Resource )
printf("Font not found\r\n"); /* Prints */

该错误似乎是因为找不到文件。/System/Library/Fonts 不是字体的位置吗?或者,iPhone 应用程序根本没有对该目录的任何读取访问权限吗?

谢谢!

最佳答案

要查找设备上安装的字体,请加载字体 list (plist):

NSDictionary *cgFonts = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/Fonts/CGFontCache.plist"];

解析后,您将找到适合您的字体的条目:

Helvetica = "/System/Library/Fonts/Cache/Helvetica.ttf";

关于iphone - 字体在 iPhone 上的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2556874/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com