BrushCue Example: Rotate 90° Counterclockwise¶
You can use this tool online at https://www.brushcue.com/tools/rotate-90-counter-clockwise
In [ ]:
!pip install brushcue
In [1]:
import io
from PIL import Image
import brushcue as bc
graph = bc.Composition.monet_women_with_parasol().rotate_90_counter_clockwise()
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: modify_orientation_compute_rgba8unorm_rotate_90_counter_clockwise_inarr_false
Out[1]: