API for analyzing PSD files

I am trying to parse Photoshop PSD files and I want to extract layer information, including text.

Is there any API in Objective-C that can help me extract this information from PSD files?

+2
source share
1 answer

There is no framework or third-party parser for analyzing a PSD file in Objective-C, but there is one available in C that you could use with objective-C code

Forum source:

Is there a PSD parser for Objective-C? I want to replace the image of the layer and display the result as NSImage.

load layers from psd file at runtime?

The source code for parsing a PSD file in C.

+5
source

Source: https://habr.com/ru/post/886517/


All Articles