Usage

Command line

The package provides command line tools to handle a PSD document:

psd-tools export <input_file> <output_file> [options]
psd-tools show <input_file> [options]
psd-tools debug <input_file> [options]
psd-tools -h | --help
psd-tools --version

Example:

psd-tools show example.psd  # Show the file content
psd-tools export example.psd example.png  # Export as PNG
psd-tools export example.psd[0] example-0.png  # Export layer as PNG

Working with PSD document

psd_tools.api package provides the user-friendly API to work with PSD files. PSDImage represents a PSD file.

Open an image:

from psd_tools import PSDImage
psd = PSDImage.open('my_image.psd')

Most of the data structure in the psd-tools suppports pretty printing in IPython environment.

In [1]: PSDImage.open('example.psd')
Out[1]:
PSDImage(mode=RGB size=101x55 depth=8 channels=3)
  [0] PixelLayer('Background' size=101x55)
  [1] PixelLayer('Layer 1' size=85x46)

Internal layers are accessible by iterator or indexing:

for layer in psd:
    print(layer)
    if layer.is_group():
        for child in layer:
            print(child)

child = psd[0][0]

Note

The iteration order is from background to foreground, which is reversed from version prior to 1.7.x. Use reversed(list(psd)) to iterate from foreground to background.

The opened PSD file can be saved:

psd.save('output.psd')

Working with Layers

There are various layer kinds in Photoshop.

The most basic layer type is PixelLayer:

print(layer.name)
layer.kind == 'pixel'

Some of the layer attributes are editable, such as a layer name:

layer.name = 'Updated layer 1'

It is possible to create a new PixelLayer from a PIL object, the PIL image will be converted to the color mode of the PSD File given in parameter:

PixelLayer.frompil(pil_image, psd_file, "Layer name", top_offset, left_offset, Compression.RLE)

See the function documentation for further parameter explanations.

Group has internal layers:

for layer in group:
    print(layer)

first_layer = group[0]

Create a new group object.:

Group.new("Group name", open_folder=True, parent=parent_group)

TypeLayer is a layer with texts:

print(layer.text)

ShapeLayer draws a vector shape, and the shape information is stored in vector_mask and origination property. Other layers can also have shape information as a mask:

print(layer.vector_mask)
for shape in layer.origination:
    print(shape)

SmartObjectLayer embeds or links an external file for non-destructive editing. The file content is accessible via smart_object property:

import io
if layer.smart_object.filetype in ('jpg', 'png'):
    image = Image.open(io.BytesIO(layer.smart_object.data))

SolidColorFill, PatternFill, and GradientFill are fill layers that paint the entire region if there is no associated mask. Sub-classes of AdjustmentLayer represents layer adjustment applied to the composed image. See Adjustment layers.

Modifying the layer structure

The layer structure of a PSD object can be modified through methods emulating a python list.

The internal model of the psd layer structure will be automatically updated when saving the psd to a file or a similar operation. Moving a layer from a PSD to another will also automatically convert the PixelLayer to the target psd’s color mode.

The follwing are valid for both PSDImage and Group objects.

Set an item:

group[0] = layer

Add a layer to a group:

group.append(layer)

Add a list of layers to a group:

group.extend(layers)

Insert a layer to a specific index in the group:

group.insert(3, layer)

Remove a layer from the a group:

group.remove(layer)

Pop a layer from the group:

layer = group.pop()

Emptying a layer group:

group.clear()

Get the index of a layer in the group:

group.index(layer)

Count the occurences of a layer in a group:

group.count(layer)

Move a given list of layers in a newly created Group. If no parent group is given in parameter, the new group will replace the first layer of the list in the PSD structure:

Group.group_layers(layer_list, "Group Name", parent=parent_group, open_folder=True)

Below an example of such an operation.:

- PSDImage
    - Group 1
        - PixelLayer
        - FillLayer
    - PixelLayer
    - TypeLayer
    - SmartObjectLayer
    - PixelLayer

Group.group_layers(PSDImage[:2], "New Group")
- PSDImage
    - New Group
        - Group 1
            - PixelLayer
            - FillLayer
        - PixelLayer
        - TypeLayer
    - SmartObjectLayer
    - PixelLayer

Some operations are available for all Layer objects.

Delete a layer from its layer structure:

layer.delete()

Layers can be moved from a group to another:

layer.move_to_group(target_group)

Layers can be moved within the group to change their order:

layer.move_up(5) # Will send the layer upward in the group
layer.move_down(3) # Will send the layer downward in the group

Exporting data to PIL

Export the entire document as PIL.Image:

image = psd.composite()
image.save('exported.png')

Export a single layer including masks and clipping layers:

image = layer.composite()

Export layer and mask separately without composition:

image = layer.topil()
mask = layer.mask.topil()

To composite specific layers, such as layers except for texts, use layer_filter option:

image = psd.composite(
    layer_filter=lambda layer: layer.is_visible() and layer.kind != 'type')

Note that most of the layer effects and adjustment layers are not supported. The compositing result may look different from Photoshop.

Exporting data to NumPy

PSDImage or layers can be exported to NumPy array by numpy() method:

image = psd.numpy()
layer_image = layer.numpy()