I'm coming back to Java after quite a while away; I 'did' it in college, but Swing is completely new to me, and I'm having trouble making frames display as I want.
I have an application that searches for gif and jpg files and gets the dimensions and file size. I would like it to display each image with a text summary underneath like:
(image)
100x200 - 20k
(image 2)
400x50 - 10k
... etc.
Currently it scans through an array of images, and resizes the frame (I think) so that it is the right size to contain all the images, one after the other. I haven't addressed the text issue yet; I'm hoping it will be trivial once I have the image part working...
( Details of the problemCollapse )