BrushCue Example: Halftone¶

Open In Colab

You can use this tool online at https://www.brushcue.com/tools/halftone

In [ ]:
!pip install brushcue
In [1]:
import io
from PIL import Image

import brushcue as bc

graph = (
    bc.Composition.monet_women_with_parasol()
    .l_curve(bc.Curve.pivoted_sigmoid(0.5, 1))
    .halftone(
        25,
        bc.ProfiledColor.from_rgba_srgb(bc.RGBAColor.from_components(0, 0, 0, 1)),
        bc.ProfiledColor.from_rgba_srgb(bc.RGBAColor.from_components(1, 1, 1, 1)),
    )
)

ctx = bc.Context()
composition = graph.execute(ctx)
data_bytes = composition.to_image_bytes(ctx)
img = Image.open(io.BytesIO(data_bytes))
img.thumbnail((400, 400))  # Remove this line for full resolution
img
new pipeline: painter_Tessellated_fill_solid_no_brush_sample_true_rgba16float
new pipeline: color_transformer_shader_rgba16float_compute_3508101820499639929_inarr_false
new pipeline: spacial_displacement_shader_rgba16float_compute_8105918757704430445_inarr_false
new pipeline: color_transformer_shader_rgba16float_compute_15141207515808804741_inarr_false
Out[1]:
No description has been provided for this image