# Equipe n° :
# Lycée :
################################################################


from PIL import Image

blason = Image.open('Contour_blason.png') 
linux = Image.open('logo_linux.png') 
python = Image.open('logo_python.png') 


Notre_blason = Image.new("RGB", blason.size)


Couleurs = { 'or' : (255 ,255, 0),
	     'argent' : (192, 192, 192),
	     'azur' : (0, 128, 255),
	     'gueules' : (226, 13, 13),
	     'sable' : (0, 0, 0),
	     'orange' : (255, 134, 13),
	     'sinople' : (20, 148, 20),
	     'pourpre' : (120, 3, 115)}

#def inserer_figure(

#def creer_rayures(


Notre_blason.save("Notre_blason.png")
