In [ ]:
!pip install brushcue
In [1]:
import io
from PIL import Image
import brushcue as bc
variable_0 = bc.Composition.monet_women_with_parasol()
variable_1 = bc.Float.passthrough(15.45)
graph = variable_0.liquify(variable_1, 0.017).crop(
bc.Bounds2f.from_x_y_width_height(
(variable_0.bounds().min_x() + variable_1),
(variable_0.bounds().min_y() + variable_1),
(variable_0.bounds().width() - (variable_1 * 2)),
(variable_0.bounds().height() - (variable_1 * 2)),
)
)
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: spacial_displacement_shader_rgba16float_compute_13414961672150814580_inarr_false
Out[1]: