how add different shapes partially on JPanel+image which is on JPanel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T20:06:21Z http://stackoverflow.com/feeds/question/700322 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel 0 how add different shapes partially on JPanel+image which is on JPanel Prajakta 2009-03-31T06:48:43Z 2009-03-31T16:22:58Z <p>My Project is in Java Swing.</p> <p>I have a JPanel on which I am adding some images with .png extension (which are on JLabels) at center. </p> <p>Now I want to add a line which will be partially on the JPanel &amp; partially on that image. Currently when I am adding a line, JPanel shows the line but when I resize the image &amp; drag it to the image, the image hides the line.</p> <p>What can be done so that the image doesn't hide my line &amp; shows it on image?</p> http://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel/700330#700330 2 Answer by Tom for how add different shapes partially on JPanel+image which is on JPanel Tom 2009-03-31T06:56:04Z 2009-03-31T06:56:04Z <p>You're probably better off drawing the image yourself and drawing the line over the top in the same control. Create a class that extends Canvas and in the paint method write your own code to paint the image and then draw the line.</p> http://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel/701805#701805 0 Answer by Tom Martin for how add different shapes partially on JPanel+image which is on JPanel Tom Martin 2009-03-31T16:13:27Z 2009-03-31T16:13:27Z <p>You could try using <a href="https://jxlayer.dev.java.net/" rel="nofollow">JXLayer</a> and defining a custom LayerUI for it that would draw the lines. These would then appear above the components you need to draw over. This is a little more advanced and involves using a 3rd party (open source) custom component but will allow you to change you mind about what Swing component you use to render your images later. I think <a href="http://weblogs.java.net/blog/alexfromsun/archive/2008/07/jxlayer%5F30%5Fhow.html" rel="nofollow">this</a> article best describes how to achieve what you want.</p> <p>I've solved many similar issues to this in the past in a variety of ways and none have had the flexibility and maintainability of JXLayer.</p> http://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel/701829#701829 1 Answer by Tom Martin for how add different shapes partially on JPanel+image which is on JPanel Tom Martin 2009-03-31T16:17:34Z 2009-03-31T16:22:58Z <p>Another option is to use JLayeredPane instead of JPanel as your main container and place a non-opaque (setOpaque(false)) JPanel on a higher layer Use JLayeredPane.setLayer(yourPanel, highNumber) and fill your JLayeredPane using something like GridBagLayout or a simple custom LayoutManager.</p> <p>You can then implement the custom painting on that panel.</p>