{"id":38665929,"url":"https://github.com/yunruse/pxdlib","last_synced_at":"2026-01-17T09:47:56.075Z","repository":{"id":57455630,"uuid":"325858469","full_name":"yunruse/pxdlib","owner":"yunruse","description":"Pixelmator Pro image format (.pxd) library","archived":false,"fork":false,"pushed_at":"2023-02-05T20:21:04.000Z","size":330,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"production","last_synced_at":"2025-11-27T13:02:44.596Z","etag":null,"topics":["pixelmator","raster-graphics","vector-graphics-editor"],"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/yunruse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-12-31T19:02:55.000Z","updated_at":"2025-06-20T06:09:30.000Z","dependencies_parsed_at":"2023-02-19T01:46:12.450Z","dependency_job_id":null,"html_url":"https://github.com/yunruse/pxdlib","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yunruse/pxdlib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunruse%2Fpxdlib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunruse%2Fpxdlib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunruse%2Fpxdlib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunruse%2Fpxdlib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yunruse","download_url":"https://codeload.github.com/yunruse/pxdlib/tar.gz/refs/heads/production","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunruse%2Fpxdlib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28505565,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["pixelmator","raster-graphics","vector-graphics-editor"],"created_at":"2026-01-17T09:47:53.468Z","updated_at":"2026-01-17T09:47:54.942Z","avatar_url":"https://github.com/yunruse.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pxdlib (Alpha 0.0.4)\n\nA (reverse-engineered) library intended for deciphering and manipulating the `.pxd` files used by the image editor [Pixelmator Pro].\n\nGrab Python 3.6 or above and `pip install pxdlib`!\n\nDocumentation exists for the [API], and a much longer set of documentation exists for the [reverse-engineering] of the `.pxd` format.\n\n[Pixelmator Pro]: https://pixelmator.com/pro/\n[API]: https://github.com/yunruse/pxdlib/blob/production/docs/api/readme.md\n[reverse-engineering]: https://github.com/yunruse/pxdlib/blob/production/docs/pxd/readme.md\n\n`pxdlib` can be used for a variety of purposes. For example, its first use case was to automagically manipulate coordinates, a little like:\n\n```python\nfrom csv import reader\nfrom pxdlib import PXDFile\n\nx0, y0 = 50, 100\n\nCOORDS = dict()\nwith open('data.csv') as f:\n    for name, x, y in reader(f):\n        COORDS[name] = x0 + float(x), y0 + float(y)\n\nwith PXDFile('graph.pxd') as pxd:\n    for l in pxd.all_layers():\n        if l.name in COORDS:\n            l.position = COORDS[l.name]\n\n# The file is now saved and modified!\n```\n\n## Development\n\nAs `pxdlib` is available on PyPI, it will be updated in `production` only when a new version is available.\n\nThe reverse-engineering document, however, will be kept up-to-date in `production` as behaviour is confirmed.\n\n## What can't pxdlib do?\n\nThe following are future goals:\n\n- a much better file API, which doesn't just operate in-place,\n- raster layers are accessible in a format which is compatible with a good raster-manipulating API;\n- vector layers are fully modifiable;\n- text layers can be modified, at least with the common formatting capabilities;\n- all effects and filters are documented and available;\n- layers can be created and destroyed;\n- the above is all formally tested;\n- actually being kept 100% up-to-date;\n- backwards compatibility\n\nThankfully Pixelmator is pretty backwards-compatible, so the basic automation tools – toggling visibility, moving items around – should probably work forever. Maybe.\n\nA changelog is available [here](https://github.com/yunruse/pxdlib/blob/production/docs/changelog.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyunruse%2Fpxdlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyunruse%2Fpxdlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyunruse%2Fpxdlib/lists"}