Blob (Bmp 5-5-5) Image help needed
#1 Members - Reputation: 104
Posted 07 December 2012 - 11:37 PM
The images are stored in a SQLite database in Blob Format.
The images are Bmp 5-5-5 (without a header)
I am able to view them using an AutoIT script
http://pastebin.com/v2dyRyBG
The above link is the auto it script
the "SELECT thumbnail FROM Games_info where pkey='3'" pulls the blob file from the database
Here is the blob file I saved directly from the database
http://wikisend.com/download/239802/blobthumbnail
Does anyone know an easy way to possible edit this blob file? Or a way I can make a 57x57 a 5-5-5 bmp blob without a header so i can insert it into the SQLite db?
#2 Members - Reputation: 2113
Posted 08 December 2012 - 12:12 AM
If you don't have a program that can work with that kind of data, the simplest way would be to write a programm to append/remove a image header of a format than can store that data.
I'd suggest BMP or TGA, both allow the pixel data in exactly that format.
#3 Members - Reputation: 104
Posted 08 December 2012 - 10:37 AM
Can you recommend a program to save in bmp 555 format?
#5 Members - Reputation: 2113
Posted 08 December 2012 - 01:52 PM
Here, try this, it's a hex dump of 16bit bitmap header for a 57x57 image. Since you seem to do Linux/Unix I think you can use one of the shell tools to convert it to binary. The problem I fear is that bitmaps do use padding (4 bytes per line), so that probably won't work.
42 4D 0A 1A 00 00 00 00 00 00 36 00 00 00 28 00
00 00 39 00 00 00 39 00 00 00 01 00 10 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00
Edited by Endurion, 08 December 2012 - 01:53 PM.
#6 Marketplace Seller - Reputation: 8955
Posted 08 December 2012 - 02:55 PM
Just 'cause I'm curious, are you saying every bitmap format aligns each line of pixels to 4 bytes?The problem I fear is that bitmaps do use padding (4 bytes per line), so that probably won't work.
Or that, regardless of the length of a line, there are 4 empty bytes at the end of each one?
And is the first bit or the last bit of a 16-bit 555 bitmap pixel the ignored bit?
All glory be to the Man at the right hand... On David's throne the King will reign, and the Government will rest upon His shoulders. All the earth will see the salvation of God.
Of Stranger Flames - [indie turn-based rpg set in a para-historical French colony] | Indie RPG development journal
#7 Members - Reputation: 2113
Posted 08 December 2012 - 11:54 PM
Just 'cause I'm curious, are you saying every bitmap format aligns each line of pixels to 4 bytes?
The problem I fear is that bitmaps do use padding (4 bytes per line), so that probably won't work.
Or that, regardless of the length of a line, there are 4 empty bytes at the end of each one?
And is the first bit or the last bit of a 16-bit 555 bitmap pixel the ignored bit?
Not every bitmap format, only the Windows BMP format AFAIK.
Every line of pixels is padded to a full multiple of four bytes. The padding bytes are added at the end of a line. 16-bit bitmaps are always stored as 5-5-5, xRRRRRGGGGGBBBBB, unless the color masks in the header say otherwise. For simplicity sake the color masks in the sample hex dump are set to 0, then xRRRRRGGGGGBBBBB is the default.
Edited by Endurion, 08 December 2012 - 11:55 PM.






