{"id":15913055,"url":"https://github.com/34j/psd2pngs","last_synced_at":"2025-09-15T20:08:56.637Z","repository":{"id":54678770,"uuid":"522579697","full_name":"34j/psd2pngs","owner":"34j","description":"[Onefile .exe / Multiprocessing]🖼 psd2pngs converts a PSD file to PNG files with a single click or via CLI while maintaining the layer hierarchy and performing the appropriate renaming. ","archived":false,"fork":false,"pushed_at":"2022-08-29T09:47:19.000Z","size":149,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-20T17:23:08.326Z","etag":null,"topics":["executable","psd","python","windows"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/34j.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"License.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-08T14:20:23.000Z","updated_at":"2023-11-20T10:15:27.000Z","dependencies_parsed_at":"2022-08-13T23:50:14.096Z","dependency_job_id":null,"html_url":"https://github.com/34j/psd2pngs","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/34j/psd2pngs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/34j%2Fpsd2pngs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/34j%2Fpsd2pngs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/34j%2Fpsd2pngs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/34j%2Fpsd2pngs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/34j","download_url":"https://codeload.github.com/34j/psd2pngs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/34j%2Fpsd2pngs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275312974,"owners_count":25442565,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-15T02:00:09.272Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["executable","psd","python","windows"],"created_at":"2024-10-06T16:22:48.055Z","updated_at":"2025-09-15T20:08:56.606Z","avatar_url":"https://github.com/34j.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# psd2pngs\n\n[![Licence](https://img.shields.io/github/license/34j/psd2pngs)](./License.txt)\n[![Executable](https://img.shields.io/badge/OneFile_.exe-Click-darkblue)](https://github.com/34j/psd2pngs/releases)\n[![Japanese Explanation](https://img.shields.io/badge/%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%81%AE%E8%AA%AC%E6%98%8E-Click-blue)](#日本語の説明)\n[![PyPI version](https://img.shields.io/pypi/v/psd2pngs)](https://pypi.org/project/psd2pngs/)\n\n## Introduction\n\npsd2pngs converts a psd file to png files while maintaining the layer hierarchy and performing the appropriate renaming, using multiprocessing.\nYou do not have to read this long docs, just download [![Executable](https://img.shields.io/badge/psd2pngs.exe-Click-darkblue)](https://github.com/34j/psd2pngs/releases) and open a psd file with it!\n\n## Example\n\n![Screenshot GIF](Example.gif)\n\nNote that this GIF is in fast forward.\n\n## Usage\n\n### Using as an app\n\n- Just open `.psd` file with this app. ([Executable version](https://github.com/34j/psd2pngs/releases) only.)\n- Alternatively, this app can also be used with command prompt.\n\n```shell\n\u003e psd2pngs -h\nUsage: psd2pngs [OPTIONS] PSD_PATH\n\nOptions:\n  -v, --version              Show the version and exit.\n  -o, --out PATH             Output directory path. If not specified, output\n                             to the same directory as the PSD file.\n  -s, --single-process       Force not to use multiprocessing.\n  -t, --tasks-count INTEGER  Number of tasks. Recommended to be less than or\n                             equal to the number of CPUs (32) because the   \n                             process maximizes the use of CPUs.\n  -j, --json                 Output JSON file containing layer information in\n                             snake case.\n  -jc, --json-camel-case     Output JSON file containing layer information in\n                             camel case.\n  -h, -?, --help             Show this message and exit.\n```\n\nThe type of content of Output JSON file (snake_case) is the following.\n\n```python\nclass LayerInfo(NamedTuple):\n    local_path: str\n    name: str\n    safe_name: str\n    is_visible: bool\n    is_group: bool\n    children: \"Iterable[LayerInfo]\"\n```\n\nThe type of content of Output JSON file (camelCase) is the following.\n\n```python\nclass LayerInfo(NamedTuple):\n    localPath: str\n    name: str\n    safeName: str\n    isVisible: bool\n    isGroup: bool\n    children: \"Iterable[LayerInfo]\"\n```\n\n### Using as a module\n\n[![Read the Docs](https://img.shields.io/readthedocs/psd2pngs?label=Docs%20%28Click%29)](https://psd2pngs.readthedocs.io/)\n\nSee the [documentation (readthedocs.io)](https://psd2pngs.readthedocs.io/).\n\n## Installation\n\n### Option 1. Executable version\n\nDownload the latest release from [Releases](https://github.com/34j/psd2pngs/releases).\n\n### Option 2. Python version using pip install\n\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/psd2pngs)](https://pypi.org/project/psd2pngs/)\n[![PyPI - Downloads (month)](https://img.shields.io/pypi/dm/psd2pngs)](https://pypi.org/project/psd2pngs/)\n\n```shell\npy -m venv venv\n\"./venv/Scripts/Activate.bat\"\npip install psd2pngs\npsd2pngs from.psd\n```\n\n### Option 3. Python version using git clone\n\n```shell\ngit clone https://github.com/34j/psd2pngs.git\ncd ./psd2pngs\npy -m venv venv\n\"./venv/Scripts/Activate.bat\"\npip install -r requirements.txt\npython -m psd2pngs from.psd\n```\n\n### Option 4. Executable version - Compiling yourself using pip\n\n```shell\npy -m venv venv\n\"./venv/Scripts/Activate.bat\"\npip install psd2pngs\npip install pyinstaller\npyinstaller venv/Lib/site-packages/psd2pngs/__main__.py --onefile -n psd2pngs\nmove \"./dist/psd2pngs.exe\" \"./\"\n./psd2pngs from.psd\n```\n\n### Option 5. Executable version - Compiling yourself using git\n\n```shell\ngit clone https://github.com/34j/psd2pngs.git\ncd ./psd2pngs\npy -m venv venv\n\"./venv/Scripts/Activate.bat\"\npip install -r requirements.txt\npip install pyinstaller\npyinstaller psd2pngs/__main__.py --onefile -n psd2pngs\nmove \"./dist/psd2pngs.exe\" \"./\"\n./psd2pngs from.psd\n```\n\n## 日本語の説明\n\npsd2pngsは、psdファイルをレイヤーの階層構造を維持したままpngファイルに変換し、適切なリネームを行うアプリケーションです。\n1ファイルにまとまったWindows用実行ファイル[`psd2pngs.exe`](https://github.com/34j/psd2pngs/releases)も配布しています。\n\n### インストール方法\n\n- [Releases](https://github.com/34j/psd2pngs/releases)から最新のリリースをダウンロードします。\n\n### 使い方\n\n- psdファイルを右クリックし、`プログラムから開く`を使ってこのアプリで開きます。\n\n[![Contributors](https://img.shields.io/github/contributors/34j/psd2pngs)](https://github.com/34j/psd2pngs/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F34j%2Fpsd2pngs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F34j%2Fpsd2pngs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F34j%2Fpsd2pngs/lists"}