Advertisement
bacnguyenxgen

Untitled

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