An open API service indexing awesome lists of open source software.

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

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)