Premier commit
[powerfractal.git] / Src / Power_Bmp.ads
1 ------------------------------------------------------------------------------------------------
2 -- Nom : Power_Bmp / fait partie du programme Power Fractal --
3 -- --
4 -- Auteurs : Gregory Burri & Adrien Crivelli --
5 ------------------------------------------------------------------------------------------------
6 -- But : Mettre a diposition un outil pour ecrire des bmps --
7 ------------------------------------------------------------------------------------------------
8
9 --Pour les types, les constantes et les variables globales
10 with Power_Types; use Power_Types;
11
12 package Power_Bmp is
13
14 ------------------------------------------------------------------------------------------------
15 -- Nom : Ecrire_Bmp --
16 -- But : Inverser une couleur RGB --
17 -- Parametres ----------------------------------------------------------------------------------
18 -- In-out : * La couleur --
19 ------------------------------------------------------------------------------------------------
20 procedure Ecrire_Bmp (Matrice_Image : in T_Matrice_Tampon; Nom_Fichier : in String);
21
22 end Power_Bmp;