Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CImage
- Timestamp:
- 03/12/25 08:11:08 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CImage
v2 v3 7 7 == Constructors == 8 8 9 {{{ 9 {{{#!c++ 10 10 CImage(void); 11 11 CImage(const char* filename) … … 18 18 ==== Examples ==== 19 19 20 {{{ 20 {{{#!c++ 21 21 CImage image("/usr/images/cardinal.png"); 22 22 }}} 23 23 24 24 25 {{{ 25 {{{#!c++ 26 26 CImage image; 27 27 }}} … … 33 33 Opens a specified file. 34 34 35 {{{ 35 {{{#!c++ 36 36 int LoadImage(const char* filename); 37 37 }}} … … 52 52 Display the image 53 53 54 {{{ 54 {{{#!c++ 55 55 void Draw(int x, int y, CDspArea* dspArea = NULL); 56 56 }}}