How to crop this image?

Hi,

I’m wondering if it would be possible to crop this image so that all the white around the outside of the black is removed. It’s important that the white inside the black shape remains though.

Thanks in advance

Pillow is probably going to be your easiest route to avoid getting stuck in a type error.

from PIL import Image

# Read the image
im = Image.open("sample-image.png")

# Rotate image
angle = 10
rotated = im.rotate(angle)
w, h = yourImage.size
cropped = out.crop((0, 30, w, h-30))
cropped.save('rotate-output.png')

I think OP meant masking, not cropping.