Skip to main content

Python API for Photoshop.

Project description

logo

python version PyPI version Documentation Status Downloads Status Downloads License pypi format Chat on Discird Maintenance

All Contributors

Python API for Photoshop.

The example above was created with Photoshop Python API. Check it out at photoshop-python-api.readthedocs.io/examples.

Has been tested and used Photoshop version:

Photoshop Version Supported
2020 :white_check_mark:
cc2019 :white_check_mark:
cc2018 :white_check_mark:
cc2017 :white_check_mark:

Installing

You can install via pip.

pip install photoshop_python_api

or through clone from Github.

git clone https://github.com/loonghao/photoshop_python_api.git

Install package.

python setup.py install

Since it uses COM (Component Object Model) connect Photoshop, it can be used in any DCC software with a python interpreter.

Hello World

import photoshop.api as ps
app = ps.Application()
doc = app.documents.add()
new_doc = doc.artLayers.add()
text_color = ps.SolidColor()
text_color.rgb.green = 255
new_text_layer = new_doc
new_text_layer.kind = ps.LayerKind.TextLayer
new_text_layer.textItem.contents = 'Hello, World!'
new_text_layer.textItem.position = [160, 167]
new_text_layer.textItem.size = 40
new_text_layer.textItem.color = text_color
options = ps.JPEGSaveOptions(quality=5)
# # save to jpg
jpg = 'd:/hello_world.jpg'
doc.saveAs(jpg, options, asCopy=True)
app.doJavaScript(f'alert("save to jpg: {jpg}")')

demo

Photoshop Session

Use it as context.

from photoshop import Session


with Session(action="new_document") as ps:
    doc = ps.active_document
    text_color = ps.SolidColor()
    text_color.rgb.green = 255
    new_text_layer = doc.artLayers.add()
    new_text_layer.kind = ps.LayerKind.TextLayer
    new_text_layer.textItem.contents = 'Hello, World!'
    new_text_layer.textItem.position = [160, 167]
    new_text_layer.textItem.size = 40
    new_text_layer.textItem.color = text_color
    options = ps.JPEGSaveOptions(quality=5)
    jpg = 'd:/hello_world.jpg'
    doc.saveAs(jpg, options, asCopy=True)
    ps.app.doJavaScript(f'alert("save to jpg: {jpg}")')

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Hal

💻

voodraizer

🐛

brunosly

🐛

tubi

🐛

wjxiehaixin

🐛

罗马钟

🐛

This project follows the all-contributors specification. Contributions of any kind are welcome!

how to get Photoshop program ID

Get-ChildItem "HKLM:\SOFTWARE\Classes" | 
  ?{ ($_.PSChildName -match "^[a-z]+\.[a-z]+(\.\d+)?$") -and ($_.GetSubKeyNames() -contains "CLSID") } | 
  ?{ $_.PSChildName -match "Photoshop.Application" } | ft PSChildName

get_program_id

How to get a list of COM objects from the registry

Useful links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

photoshop_python_api-0.15.0.tar.gz (50.2 kB view details)

Uploaded Source

Built Distribution

photoshop_python_api-0.15.0-py2.py3-none-any.whl (60.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file photoshop_python_api-0.15.0.tar.gz.

File metadata

  • Download URL: photoshop_python_api-0.15.0.tar.gz
  • Upload date:
  • Size: 50.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.2 CPython/3.9.1

File hashes

Hashes for photoshop_python_api-0.15.0.tar.gz
Algorithm Hash digest
SHA256 1c79527148e632a8542f9d6088f182a38e704c3ce3e2b1403cc0bd3ebc491a8e
MD5 b10f81d39baf3b376d0c9d6cd2ce293d
BLAKE2b-256 866fddeced5b27d2ddc5b3618e1f9a3cac27be44cca4ce14d5a686ab1587be75

See more details on using hashes here.

Provenance

File details

Details for the file photoshop_python_api-0.15.0-py2.py3-none-any.whl.

File metadata

  • Download URL: photoshop_python_api-0.15.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 60.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.2 CPython/3.9.1

File hashes

Hashes for photoshop_python_api-0.15.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2571370fb52cbf1429f1844736a3b35566a0d22d406898128d7835a6229e2571
MD5 c96029404e3f463886322ee5ea37026f
BLAKE2b-256 20a1053279333ef3c09290f58b8b8069008aee76cd3a9a336a7ce8b0dc1bceda

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page