Image component « JSlider « Java Swing Q&A





1. Image slider    stackoverflow.com

I want to create something like this http://flowplayer.org/tools/demos/scrollable/index.html but in Java Swing. I dont need all those effects, just scrolling of thumbnail images. Is good aproach to use toolbar ...

2. use my own image on the knob of a jslider    coderanch.com

I want to use my own image for the knob of a jslider. Do I need to write my own look and feel? Or is there some way I can change the knob image. That's all I want to do. The jslider should do everything else the same. I just want to use my own image for the knob. Seems like ...

3. adding a slider to image display    coderanch.com

Iam opening an image into a jLabel using the get graphics/drawimage method. how can i add sliders to this label so that if an image bigger than the canvas is opened you can use the sliders to view it all?? [code] Graphics2D g1 = (Graphics2D) jLabel1.getGraphics(); g1.fillRect(0,0,500,500); g1.setColor(Color.black); g1.drawImage(scaledBI, 0, 0, scaledWidth, scaledHeight, null); g1.dispose(); [code]