10-13-2014, 08:45 PM
(10-13-2014, 07:28 PM)puggsoy Wrote: Unfortunately, these aren't straight-up BMP files, as I can't see any headers. It doesn't look like simple pixel data either. They're probably compressed or in a special format, but that's all I know. I might take a shot at it later today though.
The first 8 bytes pointed at by an offset are image metadata.
ushort width?
ushort height?
ushort ImageDataLength
ushort unknown (probably image format)
followed by ImageDataLength bytes of what has to be the image data.
Still don't know how to convert the data, though.