-
Notifications
You must be signed in to change notification settings - Fork 80
Home
Hal edited this page Dec 29, 2018
·
2 revisions
Clone from github.
git clone https://github.com/loonghao/photoshop_python_api.gitInstall requirements.
pip install -r requirements.txtInstall package.
python setup.py installlfrom photoshop_python_api.documents import Documents
from photoshop_python_api.save_options import PhotoshopSaveOptions
documents = Documents()
# create new documents
doc = documents.add()
# add new artlayers
doc.add_art_layers()
options = PhotoshopSaveOptions
# save to psd
doc.save_as('D:\\tes3111t.psd', options.option)http://www.timcoolmode.com/images/small/PSD_Exporter.py
https://github.com/lohriialo/photoshop-scripting-python
https://evanmccall.wordpress.com/2015/03/09/how-to-develop-photoshop-tools-in-python/
https://techarttiki.blogspot.com/2008/08/photoshop-scripting-with-python.html