I started doing this tool quite long time ago, but I didn't tell anything until there was a chance that it will work properly. And also because I wanted to avoid others expectations. I work on it when I have some free time. Luckily or not, I've been ill for a whole week so I had a lot of time. I'm back in college by Wednesday, and I don't know how busy I will be. Therefore please be patient if someone is interested.
But one thing is sure: I wont abandon this project as I tend to do sometimes. So cross fingers for me, because sometimes I encounter very tiresome problems to solve.
Also, I have a question for other developers. On what it depends whether 32bpp bitmap can be displayed (with alpha transparency values).
I found some enum type of data and I am not sure whether one of these values will enable to display fully 32bpp Picture.
PHP Code:
typedef enum
{
DSPM_Transp1X8 = 0,
DSPM_Transp2X8 ,
DSPM_Transp3X8 ,
DSPM_Transp4X8 ,
DSPM_Transp5X8 ,
DSPM_Transp6X8 ,
DSPM_Transp7X8 ,
DSPM_Normal , //˛ opaque
DSPM_Transp, // to the specified color completely transparent
DSPM_Gray, //grayscale display of color
DSPM_TranspMid, //semi-permeable, and the designated color Transmissive
DSPM_Transp_max
} DispMode;
I just wonder if it depends on one of these?