Adjustments
create_color_layer(color, layer, **kwargs)
Create a solid color adjustment layer. @param color: Color to use for the layer. @param layer: ArtLayer or LayerSet to make active. @keyword clipped (bool): Whether to apply as a clipping mask to the nearest layer, defaults to True. @return: The new solid color adjustment layer.
Source code in src/helpers/adjustments.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
create_gradient_layer(colors, layer, **kwargs)
Create a gradient adjustment layer. @param colors: List of gradient color dicts. @param layer: ArtLayer or LayerSet to make active. @keyword clipped (bool): Whether to apply as a clipping mask to the nearest layer, defaults to True. @keyword rotation (Union[int, float]): Rotation to apply to the gradient, defaults to 90. @keyword scale (Union[int, float]): Scale to apply to the gradient, defaults to 100. @return: The new gradient adjustment layer.
Source code in src/helpers/adjustments.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
create_vibrant_saturation(vibrancy, saturation)
Experimental scoot action to add vibrancy and saturation. @param vibrancy: Vibrancy level integer @param saturation: Saturation level integer
Source code in src/helpers/adjustments.py
20 21 22 23 24 25 26 27 28 29 30 |
|