An ImageIcon is an implementation of the Icon interface in Java Swing.
0
votes
0answers
6 views
Images created with Toolkit.createImage() are drawn in Eclipse but not when executing the program later
I ran into a problem when coding a Space Invaders Game for programing class.
It's about the explosions when an enemy ship is destroyed.
I first used the following method to create the image ...
0
votes
2answers
24 views
Mac File Path for ImageIcon
I want to create a new ImageIcon (Using a Mac) and I tried this:
public void loadPics() {
ImageIcon bg = new ImageIcon("Users/USERNAME/Documents/Photos/Randombg.png").getImage();
ImageIcon ...
0
votes
0answers
12 views
Switching ImageIcons stored in an array
I am creating a switching game (CANDY CRUSH) where the objective is to switch image Icons on labels until three of the same-colored "candy" are side by side.
After traversing the array, how do I find ...
0
votes
0answers
23 views
Setting ImageIcon location or Making GIFs work with Graphics (on JPanel)?
I need to put a GIF file in my JPanel.
I have found two methods:
1.Make an ImageIcon, and put that in a JLabel, which will actually work the GIF.
The problem with this is that I can't place the ...
0
votes
2answers
22 views
Changing ImageImplement image
Everytime I change the uploaded image into images array, it draws the image beside the previous image. How can I make the next chosen picture appear over the first one?
ImageImplement panel = new ...
-1
votes
2answers
34 views
Image not showing in JFrame
Why is my image not being displayed? The buttons are always there, but the image does just not appear. It may not be a programming problem. Where should I place the image?
First Class File:
...
1
vote
3answers
30 views
JSpinner's JButton to ImageIcon
Trying to replace the JButton controller of a JSpinner to ImageIcon instead. But for some reason it does not listen to any mouseclicks(installButtonListeners() in BasicSpinnerUI seems to add ...
1
vote
2answers
47 views
What is the correct path to display an ImageIcon png file for Windows 7?
I wanted to test having a program with a simple png image on it. I wrote a short program that does this, but I can't seem to get the path right. I have checked, checked again, rechecked, and quadruple ...
2
votes
2answers
67 views
Images Not Updating In Swing
I'm having a problem updating an Image in my GUI. Everything besides these methods is coded correctly because the Image appears when I write the code (from the "setImage" method below) in the ...
0
votes
1answer
20 views
While converting string data to an Image via imageIcon, height and width are getting -1, in java2EE
While converting string data to an Image via imageIcon, height and width are getting -1. What could be the problem?
String image = request.getParameter("image");
if (image != null && ...
0
votes
1answer
31 views
Adding a message icon to Dijit Dialog
I am new to Dojo and I am trying to create a (dijit) Dialog pop up that displays a message and an icon. I am doing this programatically and I have managed to create the Dialog but I have not been able ...
0
votes
0answers
37 views
Put an icon on JButton, larger of it
I'm implementing a game in java, in which i use some JButtons to represent the tray. No problem to implement it. The problem comes from the step when i want to play, and for example add a chess on the ...
-1
votes
1answer
49 views
JButton with background image and backlighting
I'm writing checkers. So, every cell is JButton, it has image (ImageIcon).
I want JButton that has background image and backlighting (for example, blue of red), because I want to show user available ...
0
votes
0answers
45 views
Object Oriented ImageIcon error
Basically the problem is there's no image being displayed when I call the imagePanel class to the mainImage class, using OO.
Any help is greatly appreciated.
Here is the mainImage class:
import ...
0
votes
3answers
22 views
How do I change the ImageIcon of a JLable stored within an array?
I have 9 JLables which I created and set a default image.
Now I need to change a specific JLable image within the array. How can I do this?
Thanks!
for (int i = 0; i < imgBoxArray.length; ...
0
votes
2answers
31 views
Can I save ImageIcon with ObjectOutputStream?
Does anybody know if you can save an ImageIcon file with ObjectOutputStream?
I have a person-registry that I save with an ObjectOutputStream, So it would be really convenient to to write the the ...
0
votes
1answer
29 views
How do I get my JScrollpane to expand in Height instead of width?
I have a small question for you, I have this JScrollPane I am working on, and it only expands in width. But instead, I would like it to expand in height.
private void setImageLibPanel() {
...
0
votes
1answer
48 views
How to use setIcon() in a JFrame
How do you use the JFrame.setIcon() method with a .ico file?
I'm using and ImageIcon as an argument. The compile error:
CodeBlocksMain.java:33: error: cannot find symbol
setIcon (icon);
...
-1
votes
1answer
66 views
jar file not taking images if i change the locatioon of jar file [duplicate]
I have created a jar file with some Images, but if I change the location of the jar viz., c to D directory, images are not showing. The jar file is showing Images if I keep Images where jar file exist ...
1
vote
4answers
76 views
I need to have my program add a .jpg to the GUI every time a wrong guess is made.
this is the first time I have posted here, but this community has been a great help to me since I started programming. Basically, I'm working on a simple program that has a few different play modes ...
2
votes
1answer
45 views
Blank image only for the first time i press a resize button
Ok, i compile the code and run the program the image appears as it should in the center of the screen. I put the dimensions in the JTextFields and press the resize button. Everything works fine. Now ...
-1
votes
1answer
53 views
Adding ImageIcon to a specific JPanel in an array
I have started over with my chessgame, and are now facing new problems. Like I tried to explain in the title of the question;
I made 64 squares, like a chessboard normally would have. They are given ...
-1
votes
3answers
43 views
can't add an imageIcon
i use this command to add an image icon :
iadd.setIcon(new ImageIcon(getClass().getResource("add.png")));
top.add(iadd);
but i got that exception [Exception in thread "main" ...
0
votes
0answers
31 views
Object to ImageIcon
I have this piece of code:
public ImageIcon getNextImage() {
if (PhotoWalker.hasNext()) {
return (ImageIcon) PhotoWalker.next();
} else {
return null;
}
}
And ...
0
votes
1answer
60 views
How to use an icon as a Button? Problems with resizing
I'm making a GUI with Java Swing and I want to use an icon as a Button, so Im trying to do it with a JLabel but have some problems.
I have an image whose size is 200x200 and I dont know how to resize ...
1
vote
2answers
59 views
How to add an image to a GUI
I want to add a picture to my GUI, but it doesn't seem to be able to display the picture.
(Maybe it can't find it?) I get no errors, all that happens is a blank JFrame pops up.
I'm using Eclipse, and ...
0
votes
1answer
65 views
Accessing image paths in Eclipse
I'm trying to access some images in my Java code. The code to call the images is below.
public final ImageIcon whitePiece = new ImageIcon(getClass().getResource("Images/whitecircle.PNG"));
public ...
0
votes
0answers
29 views
How to pack an ImageIcon to a JLabel, then pacl that to a JPanel? Image not fitting correctly
// HERE IS THE CODE THAT ADDS AND DISPLAYS THE IMAGES ONTO THE JPANELS.
map = level.getMap();
frame = new JFrame("GAME");
frame.setLayout( new GridLayout( map.getRows() , map.getCols() ) );
...
0
votes
1answer
58 views
Java ImageIcons and actioin listeners
I am creating a simple game where a person clicks on an image the score increases by one.
It seems simple enough, right? Here's the catch-- the images will be hidden partially behind other images!
...
0
votes
1answer
89 views
Issues with adding images to JFrames
I have been trying to load imageicons into a jframe. I have no idea why this code doesn't work. I have tried using jpanels and jlabels, and also other ways of loading images, but those don't work ...
1
vote
1answer
101 views
Update JFrame contents
How can I update the contents of a JFrame at a button click. I am building a image viewer where a list of photopath will be passed in and the user will have to click on the next or previous button to ...
0
votes
1answer
219 views
tic tac toe game project image icon?
I am making a tic tac toe project, and i am using the 9 buttons and images(Circle.jpg , Cross.jpg). First of all, i wanna clear one thing to you guys, so first i made this game using letter ("X"), ...
0
votes
3answers
150 views
Java - createImageIcon() not recognized in code?
I keep getting an error that createImageIcon() is not recognized as an available function. Not sure why this is occuring, as I feel like I have loaded the libraries that I need for it.
ImageIcon icon ...
0
votes
1answer
49 views
Adding icon to JLabel in ActionListener on button click
I'm trying to add images that I have already defined in my code to a JLabel, but only when a button has been clicked.
Currently, I've defined the icons as below:
public class Lights extends ...
0
votes
1answer
78 views
Error while using swing
I'm trying to create panel with some button which would enables disable the other button
What's the problem with the codes its compiled perfectly but while running shows the error.
I'm not able to ...
0
votes
2answers
78 views
image not showing up after button click
im having trouble in adding an image after a button is clicked, ive only added the code with the jlabel/imageicon
JLabel picture;
public Check() {
picture = new ...
1
vote
1answer
132 views
Display animated gif in ImageIcon proxy with java swing
I used to write that this
JLabel label=new JLable(URL);
frame.getContentPane().add(label);
and it works with animated gif image
however , when I want use a imageProxy to load the gif form the ...
1
vote
2answers
126 views
Align text and icon differently in JLabel
i'm trying to create a JLabel that has text aligned left and icon aligned right, i tried this code:
_ip = new JLabel(ip);
_ip.setFont(boldFont);
_ip.setBounds(5, 0, 100, 50);
...
0
votes
2answers
100 views
Can't load a photo in my java example
I'm trying to do this example
http://zetcode.com/tutorials/javagamestutorial/movingsprites/
but i get these errors
Exception in thread "main" java.lang.NullPointerException
at ...
1
vote
1answer
83 views
Using String arrays to assign file names to ImageIcons (Java)
Hi i'm having problems when trying to use an array to read in image file names to be assigned to an array of Image Icons. It compiles fine but when i launch the application the images don't seems to ...
0
votes
1answer
50 views
Error in importing image through URL and adding it on the panel
public class Interface
{
private static JMenuItem mntmNewMenuItem;
final JPanel panel = new JPanel();
private JTable table;
public Interface()
{
JFrame f= new JFrame("Content Provider ...
0
votes
1answer
44 views
Extracting application icons still null
I'm trying to extract an arraylist of icon images from a folder, but I keep getting a NullPointerException. I can already extract the smaller versions, but they are too small. The icons I'm trying to ...
1
vote
1answer
64 views
Presenting random pictures using JOptionPane icon and Math.random
I am taking a programming class, and I have to make an instrument "play". I want to use Math.random to create a random number between either 0-9 or 0-10 and have that number correspond to a picture ...
0
votes
0answers
15 views
JComponents onto JImageIcons
I am attempting to create a GUI with an imageIcon as a background and components such as buttons going on top of this ImageIcon. This is my code and whenever I run it so far, it seems to place the ...
1
vote
2answers
824 views
Set background image for JPanel in Java Breakout Game
Okay, this seems like a really simple task but I can't seem to get it. All I want is to have an image (jpg) as the background to my breakout game. Here is my code:
Main Class:
import ...
4
votes
5answers
125 views
I want a picture to stay in top left corner of a jscrollpane while scrolling
I have a JPanel in a JScrollpane.
I draw on a BufferedImage, which I display on the JPanel.
In the top left corner of the JScrollpane, I want a picture, that always stays in that corner when I scroll ...
1
vote
1answer
85 views
Changing ImageIcon in a Java grid
I have a simple chess board which I'm trying to add pieces too. I want to change the icon image without adding more squares. How can I do this?
I just want to overwrite the image which is in that ...
0
votes
2answers
134 views
JButton how to set roll over icon bounding
So I've got code that will set a JButton equal to an ImageIcon. As well, when I hover over the image it will display a new ImageIcon, but the way I have it is that the new IconImage is actually a bit ...
0
votes
2answers
99 views
show/hide span while fetching json from ajax
I have to show pageviews which i do using google analytics. Below is the html where i will show the page views
Pageviews: <span id="pageViews"></span>
<span ...
0
votes
0answers
63 views
setting ImageIcon on Jlabel
Hi im a beginner and im working on putting an images from last fm api on a jLabel.
and its not really going my way ringt now.
im getting no errors and if i print icon im getting the url for the ...






