-
-
Notifications
You must be signed in to change notification settings - Fork 323
Open
Labels
Description
Is your feature request related to a use case or a problem you are working on? Please describe.
I want to get layer kind. Now I use this code to get header and layer info:
IIOMetadata metadata = imageReader.getImageMetadata(0);
IIOMetadataNode root = (IIOMetadataNode) metadata.getAsTree("com_twelvemonkeys_imageio_psd_image_1.0");
NodeList header = root.getElementsByTagName("Header");
NodeList layers = root.getElementsByTagName("Layers");But I can't find how to get kind of layer, if it is image or text.
Describe the solution you'd like
In layerInfo, can add kind field indicate whether it is a image or text.
Additional context
In python librady psd-tools, it support.

Thank you very much to share this good project.
Reactions are currently unavailable