Philodendron Pink Princess Price

from PIL import Image, ImageFilter

# Open the image
image = Image.open(“~/Desktop/image_to_blur.jpg”)

# Specify the blur radius in pixels
blur_radius = 5

# Apply the Gaussian blur
blurred_image = image.filter(ImageFilter.GaussianBlur(blur_radius))

# Save the blurred image
blurred_image.save(“~/Desktop/image_blurred.jpg”)

See also  Philodendron Pink Princess Price

Leave a Comment