I've been using spritesheets in my current project (C#), still doing everything programmatically - setting the size for each indivdual frame, the spacing between each frame etc. I'm coming up to the point where I'm generating sprites during runtime, and should have the sizes/spacing etc for each sheet declared externally so I can simply use those values instead of setting them manually.
Now I could make an xml document containing all this data for the spritesheets. But I was looking for a way to somehow integrate the image and the data into one object. So an image that also contains the data for the spritesheet.
Is something like this possible? I have no experience whatsoever building my own file types. Searching online only gave me advanced examples of custom file typs and it never had anything to do with what I wanted.
If anyone knows/uses another good method to deal with spritesheets and their size/spacing/etc data, feel free to post it as an awnser!