Problem with tft!

hello!
i am using UTFT library for accessing my tft with ssd1963 controller....in library changing the tft declaration to

UTFT myGLCD(ITDB,38,39,40,41);

it works.

But i want to display icons on it through the flash memory.For this i am not finding the perfect library or any other solution. So if can get any help?????

Really appreciate the help.................

What library is UTFT defined in? Where did you get it?

Shady27:
...display icons on it through the flash memory...

Look at the examples that come with the UTFT library.
This example: UTFT_Bitmap, shows how to load a bitmap from flash memory.

You need to convert an image file into .c (raw) using ImageConverter565.exe (comes with UTFT library), put the new file into your sketch file and declare the image using extern in your code.
Note: There is a limit in image size using this method, this is related to the Pointer Register in Arduino.