Tagged Questions
-1
votes
0answers
30 views
Animated Gifs in JPanel [duplicate]
I'm new at doing pop-up screens with Java (just stared learning a couple of days ago) so I'm not really sure how to add an animated gif into the JPanel. Right now I'm working on a code and it only ...
1
vote
2answers
21 views
Java redrawing duplicate image
So ive been doing a bit of java recently and i have run into a bit of a problem. I have been playing around with 2d drawing and added an image to the project.
The problem is that when the window gets ...
-1
votes
1answer
47 views
Java how to create a .png file? [duplicate]
Is there a way to save a JPanel's paintComponent contents into a .png file? Preferably with java.io or some other built-in library. Thanks.
-1
votes
2answers
41 views
Java JPanel & JScrollPane
I working on a application that manage image's filters etc.
I want to have scroll bars when the image is to big to be display.
I put my customize panel that extend JPanel in a JScrollPane and I add ...
1
vote
1answer
32 views
Java JPanel wont scroll
I'm trying to make image scrollable using jPanel and jFrame in java. I'm draw my image in drawQuestion class then I add drawQuestion to jScrollPanel and It doesn't scroll. Please Tell me where my ...
0
votes
2answers
64 views
JPanel size problems, when I resize
I have following code to display and draw JPanel with buffered image.
I am setting its size to size of buffered image, but it is not getting set actually.
It shows scroll bars when I resize, but ...
1
vote
2answers
31 views
Im having trouble making an image update on intervals of 200
I am trying to make a thread that reads the screen and displays it in a frame, this code is meant to run at 5fps, so far it reads the screen, but I am having trouble making the JFrame display the ...
0
votes
2answers
91 views
Painting JPanel/JComponent
Hello I have a problem with painting a picture on a panel and adding it on frame.
import java.awt.Graphics;
import java.awt.Image;
import java.util.Random;
import javax.swing.JComponent;
import ...
2
votes
2answers
98 views
How to custom the shape of a JPanel or JLabel?
I'm displaying an image in a JLabel. I want to show that image in a circular shape i.e. I want the shape of the JLabel to be a Circle which is Rectangle by default. How to setShape of the JPanel or ...
2
votes
1answer
115 views
Adding a background image to a JPanel
I'm working on building a board game in Java. For the game board itself I was trying to place the image of the board as the background of the entire JPanel, which fills the JFrame. I found a way to ...
0
votes
1answer
113 views
Java Swing - Creating a window with buttons and a dynamic game board
I am new to Java Swing and am working on a simple application that displays a board game and movable pieces in a window.
Right now, I have a nice enough interface: the application is built on a ...
2
votes
1answer
79 views
JPanel background image not getting changed
I am using following class for adding background image to JPanel.
http://www.java2s.com/Code/Java/Swing-JFC/Panelwithbackgroundimage.htm
But when the application is executing and image is changed ...
0
votes
1answer
128 views
Load an image to JPanal SWING GUI
I am trying to figure out what I need to add or what I need to do for my image to paint on the gui. Here is my code, can some one tell me what to do.
I have a JFrame, JPanel, JButton, and a JLabel ...
1
vote
1answer
64 views
set picture to jpanel
I use this code to set a picture to jframe .
But , now my Jtable don't show, why?
public class samplepage extends JFrame{
private AllUser userModel;
private JTable uTable;
JButton addUser;
JButton ...
0
votes
1answer
56 views
Scrollable BackGround Image with text input fields using Java
I'm pretty new to Java and have been stuck for hours trying to figure out how to do the following...
I would like to create a Java program that shows a panel (has a background image that is ...
1
vote
2answers
93 views
How build personal JFrame from a PNG picture
I try to build my personal JFrame from a PNG picture. But there is different behavior between Mac OSX 10.8 and Windows 7. (I have to use JDK 6)
Here is my code :
[...]
public Fenetre()
{
...
2
votes
3answers
72 views
Updating JLabel icon messes up with the background
I have set my the container JPanel's background color partially transparent. I have a JLabel on it with a PNG image that has a transparent background. I have another image as well which is shown when ...
1
vote
1answer
52 views
JPanel not being paint in JFrame
I'm fairly new to java and decided to make a 2D game. I am trying paint the panel but it simply doesn't work. I have done the same type of thing with JFrames and it worked, but if possible I would ...
4
votes
2answers
260 views
Convert a JPanel to an image in a JScrollPane
I want to convert an JPanel to an image. I used the following method:
public BufferedImage createImage(){
int w = getWidth();
int h = getHeight();
BufferedImage bi = new BufferedImage(w, ...
0
votes
3answers
98 views
Image is not displaying inside JPanel
I want to display an image inside a panel. So I pass the path of the image to this method, open image file and pass it to the method of a private class dedicated to draw image inside the panel. The ...
-2
votes
1answer
133 views
How to load an image in JPanel? [closed]
I have a PNG image and I want to use it as a brush.
I want to paint something to JPanel.
How to load an image to use as a brush for JPanel?
1
vote
2answers
155 views
Add an Background image to a Panel
I have a JPanel, and i want to add an image as its background. How can i do that ?
frame = new JFrame("Some frame");
panel1 = new JPanel();
panel1.setBorder(new EmptyBorder(5, 5, 5, 5));
// NEED TO ...
1
vote
2answers
246 views
Java - how to add a png file to JPanel
This friday i need to hand in my Java project (I've only been programming for about 2 weeks now) and I really want to add a png file to my JPanel. Below you find my code, the name of the image is ...
1
vote
2answers
175 views
java huge BufferedImage in JScrollPane
I need to fit a huge image (BufferedImage to access colors etc) into a JScrollPane derived class. Nothing very hard until there.
The image is a JPG scan of an A3 sample of material, its size is ...
2
votes
1answer
44 views
Can't draw .jpeg on a JPanel
I'm working on a Game where I need to draw a board and pawns actively when I move them. I've searched for a few hours now, but I can't find a solution.
They're located in the same folder as the ...
2
votes
2answers
255 views
Image Drawing Works for JFrame, But Not JPanel
I'm working through some simple applications to get familiar with Swing and running into problems.
I'm attempting to have a frame containing an image (in a panel) along with buttons to zoom in/out ...
3
votes
2answers
936 views
How to fit Image size to JFrame Size?
I have a JPanel into a JFrame. I loaded a picture on the JPanel but its shown just a part of the picture: This is the part of the code where i did it:
JPanel panelImg = new JPanel()
{
public void ...
4
votes
1answer
190 views
How to load/save an Image from a JPanel
I'm missing the export file code, but I have no clue as to what I need to add. I have a drawn image in a JPanel -> panel and want to save that image into my desktop. What do I need to add?
...
0
votes
0answers
37 views
How can I save Graphics2D canvas to image file [duplicate]
Possible Duplicate:
Java Swing : Obtain `Image` of JFrame
In my java program I would like to save a Graphics2D canvas which is a JPanel as an image. I am asking for classes necessary for ...
0
votes
1answer
126 views
Displaying images and a text string simutaneously by button click [duplicate]
Possible Duplicate:
How to display images on JPanels using image paths in Netbeans
I've prepared a GUI with buttons and Jpanels. When the buttons are clicked on in the JFrame, 3 things need ...
1
vote
3answers
870 views
Java JPanel, how to overlap them (to set a background image)
I need to set a background image in my program. The structure of the main GUI is:
JFrame that contains - JPanel with BoxLayou that contains... etc
i need to put an image behind the first JPanel, but ...
2
votes
1answer
144 views
Fit imported image in panel
I tried importing image via JFileChooser into JPanel. It worked. but I need to fit the image inside the panel without losing its aspect ratio or its proportion.
I tried rescaling the image, here's my ...
1
vote
1answer
514 views
Dragging And Dropping Images
I'm making a program to edit images in Java. I was wondering if it's possible to drag an image off of a users desktop, onto the JPanel, and setting the image that was dragged as the background of the ...
1
vote
2answers
145 views
Add a transparent gradient to a JPanel?
I'm drawing a couple of shapes on a JPanel using the paintComponent() method. The final touch is to add a transparent white gradient towards the top.
I have this:
and I want to get something like ...
3
votes
3answers
142 views
Java adding images from a URL into my JPanel
I know that there is plenty of questions and answers already posted regarding this issue but I believe my situation has a bit of a twist. I have a JPanel inside a JFrame; the Jpanel has a painted ...
1
vote
1answer
288 views
Saving JPanel as image (not as file, but as a variable)
Ok my problem is simple: i make Paint application, and i would like to provide some kind of "undo" functionality. I read about undo managers and so on, but this approach seems to be difficult to ...
1
vote
1answer
2k views
Add image to JPanel
i wanted to add image to my JPanel using swing without paint()/init() and such applet methods. Upon JPanel are some other components which i want to stay visible.
In short i want to add background ...
1
vote
1answer
139 views
JPanel not showing background picture when it is scaled
im trying to set a background image on a JPanel that resizes with the panel. I have no problem in showing the picture, but as soon as I use:
background = background.getScaledInstance(300, -1, ...
2
votes
1answer
209 views
Trouble adding Image to a JPanel
I'm making a video game, and I need to add an image to a JPanel and then add that JPanel to a JFrame. All of the tutorials I've seen say to add it to a JLabel, but the image needs to be able to move ...
0
votes
0answers
110 views
How to add an Image to a JPanel that is placed on a seperate JFrame? (jformdesigner)
I know that people show how to add an image to a JPanel by putting it on a Jpanel then putting that on a JFrame, but i have an autogenerated JFrame and Panel by JFormDesigner.
The whole point of ...
1
vote
1answer
2k views
image resize to fit on JPanel
I have JPanel Which will load images.
Since images will not have the same width and height as the JPanel, I want to make the image resize and fit in the JPanel.
1
vote
2answers
1k views
jPanel is not refreshing until I resize the app window
I have one problem with my jPanel.
I have a button which PNG image from String input (math formula) and then it will repaint the old image in jPanel. And there goes the problem. The image got ...
2
votes
2answers
777 views
Resizing images and JPanel on JFrame when JFrame get resized
I have made a jframe which contain three jpanel ,these three panel devides the jframe into
three equal parts. each panel contain an image.I want to resize the images and panel when
frame get resizes ...
1
vote
1answer
83 views
Image not repainting, just multiplying
I have a JPanel implements a key listener. It pulls and displays an Image pulled from another class. NA the Key listener is passed to that class to get one of many images and move it 2px in a ...
-1
votes
1answer
273 views
Multiple JLabel MouseListeners
I'm trying to add several JLabels to a JPanel along with mouse listeners using a loop. These JLabels are going to have mouse listeners so that they change their icon when clicked (Using ...
1
vote
1answer
755 views
How to load background image into JPanel dynamically?
I have a swing gui application. I want to type into a image path and then click button to load the image into a jpanel. The problem is it won't be loaded, but if I add the extended jpanel which is ...
1
vote
2answers
280 views
Creating a JPanel with multiple images
I have a JPanel and I want do draw to this JPanel some very simple images (items). I want to use methods like DrawRect or DrawOval.. This panel will have a scrollbar. It should look like this.
I need ...
3
votes
2answers
841 views
Paint and repaint and JFrame/JPanel creation
Before I start know this: I am extremely new to Java and programming. How would I properly draw the "grass.jpg" to the screen?
import javax.swing.JFrame;
import javax.swing.JPanel;
import ...
0
votes
1answer
690 views
Add image from URL in jPanel
I have a small problem, I have tried different solutions to add a image from URL in my jPanel, but I don't succeed. This is how my jPanel looks like:
import javax.swing.DefaultListModel;
import ...
1
vote
1answer
163 views
JScrollPane - multiple Images on new line
I currently have a JScrollPane in a JPanel. I have Images that are loaded into the JPanel from a database so the amount of Images that load varies.
I have set the JFrame that the JScrollPane is ...
