We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8725706 commit dc6e1f7Copy full SHA for dc6e1f7
2 files changed
functions/imagemagick/main.py
@@ -70,7 +70,7 @@ def __blur_image(current_blob):
70
71
# Blur the image using ImageMagick.
72
with Image(filename=temp_local_filename) as image:
73
- image.resize(*image.size, blur=16, filter="hamming")
+ image.blur(radius=0, sigma=16)
74
image.save(filename=temp_local_filename)
75
76
print(f"Image {file_name} was blurred.")
functions/v2/imagemagick/main.py
@@ -73,7 +73,7 @@ def __blur_image(current_blob):
77
78
79
0 commit comments