Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CImage


Ignore:
Timestamp:
03/12/25 08:11:08 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CImage

    v2 v3  
    77== Constructors ==
    88
    9 {{{
     9{{{#!c++
    1010CImage(void);
    1111CImage(const char* filename)
     
    1818==== Examples ====
    1919
    20 {{{
     20{{{#!c++
    2121CImage image("/usr/images/cardinal.png");
    2222}}}
    2323
    2424
    25 {{{
     25{{{#!c++
    2626CImage image;
    2727}}}
     
    3333Opens a specified file.
    3434
    35 {{{
     35{{{#!c++
    3636int LoadImage(const char* filename);
    3737}}}
     
    5252Display the image
    5353
    54 {{{
     54{{{#!c++
    5555void Draw(int x, int y, CDspArea* dspArea = NULL);
    5656}}}