DEGAS Elite Icon file format: Difference between revisions
Jump to navigation
Jump to search
>Lp (Created page with "<pre> DEGAS Elite Icon *.ICN This file format is an ASCII file describing the ICON in C-format:#define ICON_W 0x00BF #define ICON_H 0x???? : Height of the icon in lines...") |
>Lp No edit summary |
||
| Line 1: | Line 1: | ||
<pre> | <pre> | ||
DEGAS Elite Icon *.ICN | DEGAS Elite Icon *.ICN | ||
This file format is an ASCII file describing the ICON in C-format:#define ICON_W 0x00BF | This file format is an ASCII file describing the ICON in C-format:#define ICON_W 0x00BF | ||
#define ICON_H 0x???? : Height of the icon in lines (hexadecimal value) | #define ICON_H 0x???? : Height of the icon in lines (hexadecimal value) | ||
Latest revision as of 19:33, 2 January 2017
DEGAS Elite Icon *.ICN
This file format is an ASCII file describing the ICON in C-format:#define ICON_W 0x00BF
#define ICON_H 0x???? : Height of the icon in lines (hexadecimal value)
#define ICONSIZE 0x???? : Width of the icon in pixels
int image[ICONSIZE] = 0x???? : Size of the icon in words (hexadecimal value)
{
?? : ICONSIZE words, icon image data (hexadecimal values)
}
Back to ST Picture Formats