BrushCue Example: Scale by Factor¶

Open In Colab

You can use this tool online at https://www.brushcue.com/tools/scale-by-factor

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

import brushcue as bc

variable_0 = bc.Float.passthrough(1)
graph = bc.Composition.monet_women_with_parasol().transform(
    bc.Transform2.identity().scale(bc.Vector2f.from_components(variable_0, variable_0))
)

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: blend_Alpha_rgba16float_compute_bg_false_fg_false
Out[1]:
No description has been provided for this image