User:Flo/pil: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "<code>from PIL import Image from urllib.request import urlopen f = Image.open("coin-toss.jpg") a = f.convert("1") a.save("coin.png")</code>")
 
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<code>from PIL import Image
<source lang="python">  
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")</code>
a.save("dither.png")</source>
 
 
[[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 02: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