A description of the Garmin IMG file format. Includes some experimental/sample code for parsing IMG files.
Categories
TopicLicense
BSD LicenseFollow Garmin IMG Format
Other Useful Business Software
Our Free Plans just got better! | Auth0
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
Garmin-img is great! Thanks.
-
I would like to know more about the img and the decompilation copilação if they can get in ConTactProgram dayvson.red @ gmail.com =) I'm on my dificutades software craçao img
-
Very useful. I found a case in which the code doesn't work on a large file, and I also found the fix: In TreFile.getMapLevels(), the line int polygonOffset = getTriplet(localOffset); encounters a problem when the offset overruns the 3 byte representation (i.e. exceeds 0xFFFFFF). I added this fix/hack: int polygonOffset = getTriplet(localOffset); // there's a problem in which the value overflows the three-byte offset while (polygonOffset<lastPolygonOffset && lastPolygonOffset>0xf00000) { polygonOffset += 0x1000000; } lastPolygonOffset = polygonOffset; With this fix the code works great!
-
Awesome docs! Thanks for the PDF.