Results 1 to 2 of 2
Thread: Problem loading an Image
- 10-17-2010, 10:10 AM #1
Member
- Join Date
- Oct 2010
- Posts
- 2
- Rep Power
- 0
Problem loading an Image
Firstly I am sorry if this is the incorrect place for this but it seems right to me. I am trying to load an image into my program but can't seem to be able to do it. I have searched the Internet and this forum and keep coming up with the same few approaches and have tried them all. I am using Eclipse and have a file structure as follows:
src
|
editor
| - EditorPanel.java
res
| - blocks1.bmp
So I have a package inside the src dir and a res dir where I am currently storing the image. I have tried the following code:
I have tried a few othJava Code:package editor; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Image; import java.awt.Toolkit; import java.net.URL; import javax.swing.ImageIcon; import javax.swing.JPanel; public class EditorPanel extends JPanel { private static final int DEFAULT_WIDTH = 800; private static final int DEFAULT_HEIGHT = 600; private ImageIcon icon; private Image image; public EditorPanel() { setPreferredSize(new Dimension(DEFAULT_WIDTH, DEFAULT_HEIGHT)); URL imgURL = EditorPanel.class.getResource("../../res/block1.bmp"); image = Toolkit.getDefaultToolkit().getImage(imgURL); } public void paintComponent(Graphics g) { super.paintComponent(g); // g.drawImage(icon.getImage(), 20, 20, null); g.drawImage(image, 20, 20, null); g.drawString("Can You See Me", 10, 50); er different methods of loading the image but each time I get a NullPointerException at the point of drawing the image in paintComponent. I have also tried different variations of the path string but to no avail. Does any here know what I am doing wrong? } }// end EditorPanel
- 10-17-2010, 11:32 AM #2
Member
- Join Date
- Oct 2010
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
Image Loading
By hobbles in forum New To JavaReplies: 10Last Post: 09-06-2010, 08:30 PM -
Problem with loading image
By m00nchile in forum New To JavaReplies: 5Last Post: 05-25-2010, 01:34 PM -
Problem in loading Image
By rahulm87 in forum Java 2DReplies: 1Last Post: 09-08-2009, 04:45 PM -
Rambling about image loading...
By Zamppa in forum Java AppletsReplies: 0Last Post: 04-14-2009, 03:55 PM -
Loading An Image Help Please!
By shaungoater in forum Java 2DReplies: 2Last Post: 01-09-2008, 08:14 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks