Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Drapeau allemand
- img =Image.new("RGB",(300,200))
- largeur, hauteur = img.size
- for colonne in range(largeur):
- for ligne in range(hauteur):
- if ligne < 66:
- img.putpixel((colonne, ligne),(0,0,0))
- elif (ligne >= 66) and (ligne < 132):
- img.putpixel((colonne, ligne),(255,0,0))
- elif ligne >= 132:
- img.putpixel((colonne, ligne),(200,200,0))
- img.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement