Results 1 to 3 of 3
- 06-05-2012, 03:35 PM #1
Member
- Join Date
- Jun 2012
- Posts
- 2
- Rep Power
- 0
Can't paint my Buffered image on my component?
Hey,
I was trying to create a component that displays an image from my Computer in Netbeans IDE.
but the image never displays.. I'm sure it gets loaded right. (confirmed with try/catch and println)
the red circle I draw on the component is visible so the component is added right ;)
anyone knows what I did wrong?
Component code:
output:Java Code:import java.awt.Color; import java.awt.Graphics; import javax.swing.JPanel; public class Fieldcomponent extends JPanel { LoadImage Tiles = null; public Fieldcomponent() { Tiles = new LoadImage("Tiles.png"); } @Override public void paintComponent(Graphics g) { int w = getWidth(); int h = getHeight(); g.setColor(Color.red); g.drawOval(0, 0, 20, 20); g.drawImage(Tiles.getImage(),w,h, null); } }
- 06-05-2012, 03:56 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,412
- Blog Entries
- 7
- Rep Power
- 17
Re: Can't paint my Buffered image on my component?
You're drawing your image to the right and below the JPanel; read the API documentation for the drawImg( ... ) methods in the Graphics class.
kind regards,
JosWhen people rob a bank they get a penalty; when banks rob people they get a bonus.
- 06-05-2012, 04:22 PM #3
Member
- Join Date
- Jun 2012
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
help importing pictures into paint component of another class.
By Grid_iso in forum New To JavaReplies: 1Last Post: 05-20-2011, 01:59 PM -
Volatile image vs buffered image
By trishtren in forum Java 2DReplies: 0Last Post: 04-17-2011, 11:31 PM -
Build project - paint component in Panel not visible.
By aborgeld in forum NetBeansReplies: 10Last Post: 04-11-2011, 09:34 PM -
Rotating Buffered Image distorts image
By VortexSpin in forum Java 2DReplies: 1Last Post: 02-13-2011, 05:54 AM -
Custom component and paint outside of bounds
By happy_hippie in forum AWT / SwingReplies: 2Last Post: 06-30-2010, 05:41 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks