Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Imagen en formato xpm x pix map
- //https://fr.wikipedia.org/wiki/X_PixMap
- //podemos incluirlo en el codigo fuente
- static const char * imagen_xpm[] = {
- /* Columnas Filas colores caractares por pixel*/
- "32 32 6 1",
- " c Black",
- ". c Blue",
- "X c #00bf00",
- "o c Red",
- "O c Yellow",
- "+ c Gray100",
- /* pixels */
- " ",
- " oooooo +++++++++++++++++++++++ ",
- " oooooo +++++++++++++++++++++++ ",
- " oooooo +++++++++++++++++++++++ ",
- " oooooo +++++++++++++++++++++++ ",
- " oooooo +++++++++++++++++++++++ ",
- " oooooo +++++++++++++++++++++++ ",
- " oooooo +++++++++++++++++++++++ ",
- " ",
- " ++++++ ++++++++++++++++++ .... ",
- " ++++++ ++++++++++++++++++ .... ",
- " ++++++ ++++++++++++++++++ .... ",
- " ++++++ ++++++++++++++++++ .... ",
- " ++++++ ++++++++++++++++++ .... ",
- " ++++++ ++++++++++++++++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++++++++++++++++ ++++ ",
- " ++++++ ++++ ",
- " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
- " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
- " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
- " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
- " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
- " ++++++ OOOOOOOOOOOO XXXXX ++++ ",
- " "
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement