5

I have 3-4 images of size 800x800 pixels . When I trying to create .pack file using gdx-texturepacker.jar, if I turn on strip whitespace X and Y option it is unable to pack and throws an error [error] Exception occured: Error packing files. but If i remove the option strip whitespace (which i really need), it creates the pack but without serving the purpose of sprite-sheet.

For small resolution image everything is working. Is there any size limitaion for using stripwhitespace option??

Any help s appreciated and any suggestion for other free texture packing tool good for libgdx assets.

Vishal
  • 147
  • 10

1 Answers1

6

I had the same problem and fixed it by editing the Max page width and Max page height options to fit my image's needs. Ex:

enter image description here

I know this is 10 months old but hopefully this will help someone out in the future with a similar problem!

Cristian Gutu
  • 1,221
  • 1
  • 11
  • 24
  • Thanks mate, One more useful command I found was: `$ java -Xmx2000m -jar texturepacker-gui.jar` – User3 Sep 30 '15 at 04:39