how add different shapes partially on JPanel+image which is on JPanel - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T20:06:21Zhttp://stackoverflow.com/feeds/question/700322http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel0how add different shapes partially on JPanel+image which is on JPanelPrajakta2009-03-31T06:48:43Z2009-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 & partially on that image.
Currently when I am adding a line, JPanel shows the line but when I resize the image & 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 & shows it on image?</p>
http://stackoverflow.com/questions/700322/how-add-different-shapes-partially-on-jpanelimage-which-is-on-jpanel/700330#7003302Answer by Tom for how add different shapes partially on JPanel+image which is on JPanelTom2009-03-31T06:56:04Z2009-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#7018050Answer by Tom Martin for how add different shapes partially on JPanel+image which is on JPanelTom Martin2009-03-31T16:13:27Z2009-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#7018291Answer by Tom Martin for how add different shapes partially on JPanel+image which is on JPanelTom Martin2009-03-31T16:17:34Z2009-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>