Is there any tool out there (perhaps the GWT compiler itself can be used as a standalone app) for generating individual images from the *.cache.png
files created during compilation?
Or, is the mapping information (for sprite geometries) available via an API?
I looked up information on the GWT repository, the documentation, here on StackOverflow, and possibly every google group on the subject, to no avail.
Motivation
My aim is to provide easy means of white-labeling a web application by instructing the GWT compiler to avoid inlining of bundled images (using <set-property name="ClientBundle.enableInlining" value="false" />
), thus forcing the use of sprite images on every user agent, than building a WAR and passing it on to a graphics designer to only edit the image assets within the packed WAR (hoping to make it a little bit easier on him/she by providing such a tool).
The designer would than use the provided tool to disassemble and reassemble the sprite image, for convenient editing.