1

I have set it up so that running my java web start application creates a desktop icon. On Linux this icon is beautiful, just as I designed it including transparency. On Windows however ( tested on 7 and 8 ), the image is down-scaled, blocky and without transparency.

Is there a way to increase the resolution of the icon made via java webstart?

Louis Theron
  • 41
  • 1
  • 3

1 Answers1

0

Java webstart has this problem that lowers the resolution of your icon if the dimension of your icon is missing in the jnlp file. Make sure you specify the actual width and height of your image like this:

<icon href="icon.png" width="64" height="64"/>
Saeid Nourian
  • 1,606
  • 15
  • 32