We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0b843c commit 57460b8Copy full SHA for 57460b8
GrayScale_Filter_An_Image.py
@@ -0,0 +1,11 @@
1
+# GrayScale Filter An Image
2
+from PIL import Image, ImageFilter
3
+
4
+# creating a image object
5
+orginal = Image.open(r"C:\Users\Belgin\Desktop\github.png")
6
7
+# Grayscale The Image
8
+# Where "L" stands for 'luminous'.
9
+grayscaled_Image = orginal.convert('L')
10
11
+grayscaled_Image.show()
0 commit comments