{"id":27817096,"url":"https://github.com/kamilburda/gimp-image-attribute-export","last_synced_at":"2026-06-20T20:31:46.122Z","repository":{"id":186538474,"uuid":"568243190","full_name":"kamilburda/gimp-image-attribute-export","owner":"kamilburda","description":"Export of GIMP image attributes as XML, JSON or YAML","archived":false,"fork":false,"pushed_at":"2026-04-07T13:25:31.000Z","size":31,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-07T15:26:02.802Z","etag":null,"topics":["gimp","gimp-plugin","image-attributes","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kamilburda.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-11-19T22:27:37.000Z","updated_at":"2026-04-07T13:25:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"0ce90364-ca18-459a-9d9f-6224a8117c9a","html_url":"https://github.com/kamilburda/gimp-image-attribute-export","commit_stats":null,"previous_names":["kamilburda/gimp-metadata-export","kamilburda/gimp-image-attribute-export"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/kamilburda/gimp-image-attribute-export","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilburda%2Fgimp-image-attribute-export","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilburda%2Fgimp-image-attribute-export/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilburda%2Fgimp-image-attribute-export/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilburda%2Fgimp-image-attribute-export/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kamilburda","download_url":"https://codeload.github.com/kamilburda/gimp-image-attribute-export/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamilburda%2Fgimp-image-attribute-export/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34585195,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"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":["gimp","gimp-plugin","image-attributes","python"],"created_at":"2025-05-01T14:35:06.635Z","updated_at":"2026-06-20T20:31:46.118Z","avatar_url":"https://github.com/kamilburda.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Image Attribute Export Plug-in for GIMP\n\nThis [GIMP](https://www.gimp.org/) plug-in exports various attributes from the specified image into an XML, JSON or YAML file. Attributes include (among many others) image name, width, height, a list of layers, layer effects, channels, paths and their attributes (width, height, offsets, visibility, color tags, ...).\n\n[**Download latest release**](https://github.com/kamilburda/gimp-image-attribute-export/releases)\n\n\n## Installation\n\nGIMP 3.0.0 or later is required.\n\n1. In GIMP, locate the folder containing GIMP plug-ins - open GIMP and go to Edit → Preferences → Folders → Plug-Ins. If you cannot locate any of the folders on your system, you can add a custom folder.\n2. Copy the `image-attribute-export` folder inside one of the folders identified in step 1. The folder hierarchy should look like this:\n    ```\n    plug-ins/\n        ...other plug-in folders...\n        image-attribute-export/\n            image-attribute-export.py\n            procedure.py\n    ```\n\nFor Windows, make sure you have GIMP installed with support for Python plug-ins.\n\n\n## Usage\n\nSimply export an image like you normally would (`File → Export...`) and replace the file extension at the top of the export dialog with `xml`, `json`, or `yaml`. Alternatively, you may select one of these file extensions at the bottom of the export dialog.\n\nTo export the attributes programmatically (e.g. from the Python-Fu Console), the file export procedures are `file-xml-export`, `file-json-export` and `file-yaml-export`.\n\n\n## Example of image attributes in the JSON format\n\nOnly a select few entries are shown for brevity.\n\n```\n{\n    \"image\": {\n        \"name\": \"loading_screen_template.xcf\",\n        \"width\": 1024,\n        \"height\": 512,\n        ...\n        \"layers\": [\n            {\n                ...\n                \"name\": \"Frames\",\n                \"visible\": True,\n                \"width\": 688,\n                \"height\": 386,\n                \"opacity\": 100.0,\n                \"offsets\": [\n                    168,\n                    30\n                ],\n                ...\n                \"children\": [\n                    {\n                        ...\n                        \"name\": \"top-frame\",\n                        ...\n                    },\n                    {\n                        ...\n                        \"name\": \"bottom-frame\",\n                        ...\n                    }\n                ]\n            },\n            {\n                ...\n                \"name\": \"main-background\",\n                ...\n            }\n        ],\n        \"channels\": [],\n        \"paths\": []\n    }\n}\n```\n\n\n## License\n\nThis plug-in is licensed under the [BSD 3-Clause](LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamilburda%2Fgimp-image-attribute-export","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkamilburda%2Fgimp-image-attribute-export","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamilburda%2Fgimp-image-attribute-export/lists"}