Advertisement
bacnguyenxgen

Untitled

Jul 20th, 2022
734
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. import PIL.ImageFilter
  2. from PIL import Image,ImageFilter
  3.  
  4. img = Image.open("hoa.jpg")
  5.  
  6. print(img.size)
  7. a = img.filter(PIL.ImageFilter.BLUR)
  8. a.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement