Changes between Version 13 and Version 14 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/CBitmap


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

--

Legend:

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

    v13 v14  
    77== Constructors ==
    88
    9 {{{
     9{{{#!c++
    1010CBitmap(void);
    1111CBitmap(const string& strFilename);
     
    2020==== Examples ====
    2121
    22 {{{
     22{{{#!c++
    2323CBitmap image("/mnt/nand/apps/myapp/myapp.bmp");
    2424}}}
    2525
    26 {{{
     26{{{#!c++
    2727string strFile = "/mnt/nand/apps/myapp/myapp.bmp";
    2828CBitmap image(strFile);
    2929}}}
    3030
    31 {{{
     31{{{#!c++
    3232CBitmap image;
    3333}}}
     
    3939Opens a specified file.
    4040
    41 {{{
     41{{{#!c++
    4242int LoadBitmap(const string& strFilename, PALETTE_ITEM* transparent = NULL);
    4343int LoadBitmap(const char* pszFilename, PALETTE_ITEM* transparent = NULL);
     
    6767==== Example ====
    6868
    69 {{{
     69{{{#!c++
    7070CBitmap bitamp;
    7171if(bitmap.LoadBitmap("/mnt/nand/apps/myapp/myapp.bmp") != BITMAP_SUCCESS)
     
    7676}}}
    7777
    78 {{{
     78{{{#!c++
    7979PALETTE_ITEM trans;
    8080trans.red = 128;
     
    9292=== DeleteBitmap ===
    9393Deletes memory in RAM allocated to the bitmap. This does not delete the file.
    94 {{{
     94{{{#!c++
    9595void DeleteBitmap(void);
    9696}}}
     
    109109==== Example ====
    110110
    111 {{{
     111{{{#!c++
    112112CBitmap bitmap("/mnt/nand/apps/myapp/myapp.bmp");
    113113bitmap.Draw(0, 0);
     
    119119=== Draw ===
    120120Draws the bitmap on the LCD display
    121 {{{
     121{{{#!c++
    122122void Draw(int x, int y);
    123123}}}
     
    138138==== Example ====
    139139
    140 {{{
     140{{{#!c++
    141141CBitmap bitmap("/mnt/nand/apps/myapp/myapp.bmp");
    142142bitmap.Draw(0, 0);
     
    146146=== GetWidth ===
    147147Get the width of the bitmap in pixels
    148 {{{
     148{{{#!c++
    149149int GetWidth(void);
    150150}}}
     
    164164==== Example ====
    165165
    166 {{{
     166{{{#!c++
    167167CBitmap bitmap("/mnt/nand/apps/myapp/myapp.bmp");
    168168int x = bitmap.GetWidth();
     
    172172=== GetHeight ===
    173173Get the height of the bitmap in pixels
    174 {{{
     174{{{#!c++
    175175int GetHeight(void);
    176176}}}
     
    189189==== Example ====
    190190
    191 {{{
     191{{{#!c++
    192192CBitmap bitmap("/mnt/nand/apps/myapp/myapp.bmp");
    193193int y = bitmap.GetHeight();
     
    197197=== GetColorCnt ===
    198198Get the number of colors the bitmap uses
    199 {{{
     199{{{#!c++
    200200int GetColorCnt(void);
    201201}}}
     
    214214==== Example ====
    215215
    216 {{{
     216{{{#!c++
    217217CBitmap bitmap("/mnt/nand/apps/myapp/myapp.bmp");
    218218int n = bitmap.GetColorCnt();
     
    222222=== GetColorsAdded ===
    223223Get the numbers of colors added to the 825 global palette when the bitmap was loaded
    224 {{{
     224{{{#!c++
    225225int GetColorsAdded(void);
    226226}}}
     
    239239==== Example ====
    240240
    241 {{{
     241{{{#!c++
    242242CBitmap bitmap("/mnt/nand/apps/myapp/myapp.bmp");
    243243int n = bitmap.GetColorsAdded();
     
    247247=== GetError ===
    248248Get the error code
    249 {{{
     249{{{#!c++
    250250int GetError(void);
    251251}}}
     
    275275==== Example ====
    276276
    277 {{{
     277{{{#!c++
    278278CBitmap bitmap("/mnt/nand/apps/myapp/myapp.bmp");
    279279int err = bitmap.GetError();
     
    287287=== ReclaimColors ===
    288288Reclaim custom colors added by loading bitmaps
    289 {{{
     289{{{#!c++
    290290static void ReclaimColors(void);
    291291}}}
     
    307307==== Example ====
    308308
    309 {{{
     309{{{#!c++
    310310CBitmap img1("/mnt/nand/apps/myapp/img1.bmp");
    311311CBitmap img2("/mnt/nand/apps/myapp/img2.bmp");