I have to work with some image files. They are named as .png and .jpg, but I tried 3 different image viewers, and none of them could open the files. I found out that the first 8 bytes of these files were CF10rUrm, and DROID told me it was a JTIP (JPEG Tiled Image Pyramid).
I need to use these from Python. Does anybody know of any way to either view these image files, convert them to another format, or, (a bit of a stretch), to read them directly from Python? (I've tried PIL already, and it doesn't recognize them.)
I know it's possible, since the program that uses these image files can view them. It's not open source, however.