User:Flo/pil: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
from PIL import Image
from PIL import Image
from urllib.request import urlopen
from urllib.request import urlopen
f = Image.open("coin-toss.jpg")
f = Image.open("dither.jpg")
a = f.convert("1")
a = f.convert("1")
a.save("coin.png")</source>
a.save("dither.png")</source>




[[File:coin.png|link=https://hub.xpub.nl/sandbot/~floorvanmeeuwen/13/working-with-images/|caption]]
[[File:001dither.png|900px|left]]
[[File:002dither.png|400px|right]]
[[File:003dither.png|600px|left]]
[[File:004dither.png|500px|right]]
[[File:005dither.png|700px|left]]

Latest revision as of 03:17, 12 April 2021

 
from PIL import Image
from urllib.request import urlopen
f = Image.open("dither.jpg")
a = f.convert("1")
a.save("dither.png")


001dither.png
002dither.png
003dither.png
004dither.png
005dither.png