This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

bitmap on GLCD

bitmap image on glcd

i want to display the bitmap image on GLCD, Any software for generating array of hex for the bitmap.?

waiting for ur response,,,

shyam.

  • What is "the bitmap"? The GLCD can most probably not display a GIF, PNG, TIFF etc but needs a raw bitmap image. Where do you get such a bitmap from?

    There are a number of programs available that can convert binary data into heither Intel Hex data that can be downloaded directly into a target, or maybe a C array with bytes expressed in hexadecimal, for inclusion in the source code like:

    unsigned char my_bitmap[] = {
        0x17,0x14,0x47,...
    ];
    

    Since google works so well for finding a program converting binary data, your first job is to figure out where to get a raw bitmap. Unless you plan to add decode functionality so you can take a full image file. The advantage with decode logic is that you can use compressed images. Slower to display, but takes way less space.

  • BIN2C.COM can convert a .bmp file to an array which can be included in a C program.

    www.programmersheaven.com/.../download.aspx

    -Walt