Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I imported:

 import javax.swing.ImageIcon;

and I used this code to import the PNG file. (i know i can create a black square easily, but it is the importing any image to my game that i want).

Image player1 = Toolkit.getDefaultToolkit().createImage("Users/Documents/JavaGameImages/Tag/BlackSquare.png");

I tried to call this image later down, but the image did not appear in the window. (assume myX = 100 and myY = 100)

public void paint(Graphics g) {         
        g.setColor(BackgroundColor);
        g.fillRect(WindowWidth, WindowHeight, 1000, 1000);

/////////////////////// The code below is where i am having trouble:

        g.drawImage(player1, myX, myY, null);
share|improve this question
1  
That's probably not the correct url for the image. – Paul Tomblin Oct 6 '12 at 20:19
There is no run time error. I am certain it is the right location. (I tested in terminal with "tab") and the file is clearly there. I can see it in finder and can be opened without corruption. – user1725720 Oct 6 '12 at 20:43
A lack of an exception doesn't mean your code worked, only that it didn't fail spectacularly. – Paul Tomblin Oct 6 '12 at 21:09
1  
I'd recommend ImageIO for loading images, IMHO. Check here for examples – MadProgrammer Oct 6 '12 at 22:20
1  
If the image is to be embedded within your final application, your going to need to use geClass().getResource(...) to locate it – MadProgrammer Oct 6 '12 at 22:22
show 3 more comments

1 Answer

When you are building that code for distribution, you'll probably want to put the image into the jar file with the class files. What I do is put it into the same directory as the class that's accessing it, and then I access it with getClass().getResource(fileName), as in this snippet of code from a textured background border:

final Toolkit toolKit  = Toolkit.getDefaultToolkit();
URL imgURL = getClass().getResource(textureFileName);
if (imgURL != null)
{
  Image tmpImage = toolKit.createImage(imgURL);
  toolKit.prepareImage(tmpImage, -1, -1, 
            new ImageObserver() {
    public boolean imageUpdate(Image updatedImage, int infoFlags, int x, 
                               int y, int width, int height)
    {
      if ((infoFlags & ImageObserver.ALLBITS) == ImageObserver.ALLBITS)
      {
        int           w               = updatedImage.getWidth(null);
        int           h               = updatedImage.getHeight(null);
        BufferedImage backgroundImage = new BufferedImage(w, h, 
                                            BufferedImage.TYPE_INT_ARGB_PRE);
        Graphics2D    g = backgroundImage.createGraphics();
        g.drawImage(updatedImage, 0, 0, null);
        g.dispose();

        Rectangle rect = new Rectangle(0, 0, w, h);
        texture = new TexturePaint(backgroundImage, rect);

        return false;
      }

      return true;
    }
  });
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.