https://github.com/thefox/krita-export-selection
Export Selection in Krita
https://github.com/thefox/krita-export-selection
krita krita-plugin
Last synced: 5 months ago
JSON representation
Export Selection in Krita
- Host: GitHub
- URL: https://github.com/thefox/krita-export-selection
- Owner: TheFox
- License: mit
- Created: 2021-10-18T15:15:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-05T07:10:59.000Z (over 1 year ago)
- Last Synced: 2025-04-08T15:11:22.497Z (about 1 year ago)
- Topics: krita, krita-plugin
- Language: Python
- Homepage: https://fox21.at
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Krita Plugin: Export current Selection as PNG
Export the current Selection Mask as PNG. The Selection Mask name, width and height will be used for the png file name.
## Project Outlines
The project outlines as described in my blog post about [Open Source Software Collaboration](https://blog.fox21.at/2019/02/21/open-source-software-collaboration.html).
- The main purpose of this software is to export the current selected Selection Mask as flattened png file from [Krita](https://krita.org/en/).
- All main features are covered. Although more features can be possible in the future.
- This list is open. Feel free to request features.
## Krita References
- [How to make a Krita Python plugin](https://docs.krita.org/en/user_manual/python_scripting/krita_python_plugin_howto.html)
- [Managing Python plugins](https://docs.krita.org/en/user_manual/python_scripting/install_custom_python_plugin.html)
- [Introduction to Python Scripting](https://docs.krita.org/en/user_manual/python_scripting/introduction_to_python_scripting.html)
- [Action Dictionary](https://scripting.krita.org/action-dictionary)
## Lessons
- [Actions Lesson](https://scripting.krita.org/lessons/actions)
- [Documents Lesson](https://scripting.krita.org/lessons/documents)
- [Layer Lesson](https://scripting.krita.org/lessons/layers)
- [Selections Lesson](https://scripting.krita.org/lessons/selections)
## Class Reference
- [Document Class Reference](https://api.kde.org/appscomplete-api/krita-apidocs/libs/libkis/html/classDocument.html)
- [Node Class Reference](https://api.kde.org/appscomplete-api/krita-apidocs/libs/libkis/html/classNode.html)
- [SelectionMask Class Reference](https://api.kde.org/appscomplete-api/krita-apidocs/libs/libkis/html/classSelectionMask.html)
- [Selection Class Reference](https://api.kde.org/appscomplete-api/krita-apidocs/libs/libkis/html/classSelection.html)