I need to write a Python program for loading a PSD photoshop image, which has multiple layers and spit out png files (one for each layer). Can you do that in Python? I've tried PIL, but there doesn't seem to be any method for accessing layers. Help. PS. Writing my own PSD loader and png writer has shown to be way too slow.
feedback
|
|
Use Gimp-Python? http://www.gimp.org/docs/python/index.html You don't need Photoshop that way, and it should work on any platform that runs Gimp and Python. It's a large dependency, but a free one. For doing it in PIL:
Edit: OK, found the solution: https://github.com/jerem/psdparse This will allow you to extract layers from a psd file with python without any non-python stuff. | |||||||||||
feedback
|
|
You can use the win32com for accessing the Photoshop with Python. Possible pseudo code for your work:
import win32com.client
pApp = win32com.client.Dispatch('Photoshop.Application')
def makeAllLayerInvisible(lyrs):
for ly in lyrs:
ly.Visible = False
def makeEachLayerVisibleAndExportToPNG(lyrs):
for ly in lyrs:
ly.Visible = True
options = win32com.client.Dispatch('Photoshop.PNGSaveOptions')
options.Interlaced = False
tf = 'PNG file name with path'
doc.SaveAs(SaveIn=tf,Options=options)
ly.Visible = False
#pApp.Open(PSD file)
doc = pApp.ActiveDocument
makeAllLayerInvisible(doc.Layers)
makeEachLayerVisibleAndExportToPNG(doc.Layers)
| |||
|
feedback
|
|
Using the win32com plugin for python (available here: http://python.net/crew/mhammond/win32/) You can access photoshop and easily go through your layers and export them. Here is a code sample that works on the layers within the currently active Photoshop document, and exports them into the folder defined in 'save_location'.
| |||
|
feedback
|