我正在尝试解析Photoshop PSD文件,并且想提取图层信息,包括文本。
Objective-C中是否有任何API可以帮助我从PSD文件中提取此信息?
最佳答案
在Objective-C中没有可用的框架或第三方解析器来解析PSD文件
但是有一种可用的C语言,可以与 objective-c 代码一起使用
论坛资料来源:
Is there a PSD file parser for Objective-C? I want to replace a layer image and output the result as an NSImage.
load layers from a psd file at runtime?
PSD file parser source code in C.
关于c++ - 解析PSD文件的API,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6223802/