The ColorizeMask class A colorize mask is a mask type node that can be used to color in line art.
Methods
Re-implemented methods
Member documentation
Return
a float value of 0.0 to 100.0 representing the cleanup amount where 0.0 is no cleanup is done and 100.00 is most aggressive. |
Edit keystrokes mode allows the user to modify keystrokes on the active Colorize Mask.
Return
true if edit keystrokes mode is enabled, false if disabled. |
Set the colors to use for the Colorize Mask's keystrokes.
Parameters
colors | a list of ManagedColor to use for the keystrokes. |
transparentIndex | index of the color that should be marked as transparent. |
reads the given rectangle from the keystroke image data and returns it as a byte array. The pixel data starts top-left, and is ordered row-first.
Parameters
color | a ManagedColor to get keystrokes pixeldata from. |
x | x position from where to start reading |
y | y position from where to start reading |
w | row length to read |
h | number of rows to read |
Return
a QByteArray with the pixel data. The byte array may be empty. |
Colors used in the Colorize Mask's keystrokes.
Return
a ManagedColor list containing the colors of keystrokes. |
Return
true if limit bounds is enabled, false if disabled. |
Remove a color from the Colorize Mask's keystrokes.
Parameters
color | a ManagedColor to be removed from the keystrokes. |
This will attempt to handle messy strokes that overlap the line art where they shouldn't.
Parameters
value | a float value from 0.0 to 100.00 where 0.0 is no cleanup is done and 100.00 is most aggressive. |
Set the value to the thinnest line on the image.
Parameters
value | a float value of the edge size to detect in pixels. |
Toggle Colorize Mask's edit keystrokes mode.
Parameters
enabled | set true to enable edit keystrokes mode and false to disable it. |
writes the given bytes, of which there must be enough, into the keystroke, the keystroke's original pixels are overwritten
Parameters
value | the byte array representing the pixels. There must be enough bytes available. Krita will take the raw pointer from the QByteArray and start reading, not stopping before (number of channels * size of channel * w * h) bytes are read. |
color | a ManagedColor to set keystrokes pixeldata for. |
x | the x position to start writing from |
y | the y position to start writing from |
w | the width of each row |
h | the number of rows to write |
Return
true if writing the pixeldata worked |
Limit the colorize mask to the combined layer bounds of the strokes and the line art it is filling. This can speed up the use of the mask on complicated compositions, such as comic pages.
Parameters
value | set true to enabled limit bounds, false to disable. |
Toggle Colorize Mask's show output mode.
Parameters
enabled | set true to enable show coloring mode and false to disable it. |
Activate this for line art with large solid areas, for example shadows on an object.
Parameters
value | true to enable edge detection, false to disable. |
Show output mode allows the user to see the result of the Colorize Mask's algorithm.
Return
true if edit show coloring mode is enabled, false if disabled. |
Index of the transparent color.
Return
an integer containing the index of the current color marked as transparent. |
Krita has several types of nodes, split in layers and masks. Group layers can contain other layers, any layer can contain masks.
Return
colorizemask If the Node object isn't wrapping a valid Krita layer or mask object, and empty string is returned. |
Process the Colorize Mask's keystrokes and generate a projection of the computed colors.
Parameters
force | force an update |