Re: Some of my images arnt being turned into image strips :?

2013-01-20 Thread darkflame
I'm starting to think...unless I am doing something stupid...this is a GWT error. At the very least the behavior contradicts the documentation: The ClientBundle generator combines all of the images defined in your interface into a single, optimized image. This certainly doesn't seem to be the

Re: Some of my images arnt being turned into image strips :?

2013-01-20 Thread Sebastián Gurin
try to prevent any inlining or other optimizations using : @Source(img0001.png) @ImageOptions(preventInlining=true) ImageResource img0001(); From ImageResource.java : /** * Set to {@code true} to require the ImageResource to be downloaded as a * separate resource at runtime.

Re: Some of my images arnt being turned into image strips :?

2013-01-20 Thread darkflame
Thanks I already disabled inlining with : set-property name=ClientBundle.enableInlining value=false / In my gwt.xml, which disables DataURLs, but still doesn't make everything image strips - some are image strips but many are still just separate PNGs images. I'll try your method as well, but I

Re: Some of my images arnt being turned into image strips :?

2013-01-20 Thread Jens
There is indeed a max size for image bundles. Take a look at: http://code.google.com/p/google-web-toolkit/source/browse/releases/2.5/user/src/com/google/gwt/resources/rg/ImageBundleBuilder.java#471 You can configure it by setting the system property gwt.imageResource.maxBundleSize to your

Re: Some of my images arnt being turned into image strips :?

2013-01-20 Thread Thomas Broyer
On Sunday, January 20, 2013 5:27:09 PM UTC+1, darkflame wrote: Thanks I already disabled inlining with : set-property name=ClientBundle.enableInlining value=false / In my gwt.xml, which disables DataURLs, but still doesn't make everything image strips - some are image strips but many are

Re: Some of my images arnt being turned into image strips :?

2013-01-20 Thread Thomas Wrobel
Thanks, but that seems to be a dimension size limit, not a file size limit: ... if (lossy || toReturn.getHeight() IMAGE_MAX_SIZE || toReturn.getWidth() IMAGE_MAX_SIZE) { ... Is there a filesize limit too? On 20 January 2013 18:05, Thomas Broyer t.bro...@gmail.com wrote: On Sunday,

Re: Some of my images arnt being turned into image strips :?

2013-01-08 Thread darkflame
Still no luck. If it helps diagnose I can supply sample images. On Saturday, December 29, 2012 11:31:06 PM UTC+1, darkflame wrote: ...and thus are rather flickery when animating between them. (they are frames in a animated sprite). What baffles me is they are defined the same way as others

Some of my images arnt being turned into image strips :?

2012-12-29 Thread darkflame
...and thus are rather flickery when animating between them. (they are frames in a animated sprite). What baffles me is they are defined the same way as others that do seem to work. eg. I have a file like: public interface MemDayImages extends ClientBundle { ...