Is there an advantages to putting all my small widget graphics in one single png-file, which is loaded once, and then creating ImageIcons for buttons and such from sections of this?
(Normally I would just use new ImageIcon(aClass.class.getResource("/path/with/image.png"))
.)
What would be a good way of doing this?
views:
32answers:
1
+1
A:
This technique is mostly used for small graphics used on a website where it is expensive to load a lot of resources seperatly.
In your case I would see no benefit in using this technique.
tangens
2009-10-13 17:29:11