paintComponent (JComponent.paintComponent(Graphics g)) is a method that Java Swing engine calls on JComponent, in order to draw it using the passed Graphics.

learn more… | top users | synonyms

1
vote
1answer
39 views

Why does my jFrame update only after I resize the window?

I understand that when you add/remove a component, you need to revalidate() and then repaint() however, I am changing the state of my polygon. Initially, the image is shown, however when I press the ...
2
votes
1answer
44 views

paintComponent Doesn't Draw Sprite On Jpanel

I'm trying to draw a sprite onto a Jpanel using the paintComponent method, for a game I'm creating. I'm using Toolkit to get the image. The image is not showing up and I don't know what the problem ...
0
votes
2answers
62 views

how can i check line between two buttons?

How can i check a line which is drawn with the help of drawline funtion between two radio button any fuction which help me for checking line is exist between these buttons r not........ java is new ...
-2
votes
1answer
36 views

didn't understand action listner of radio buttons

when i click adjacent two radio button then a line drawn between these button i put conditions in my code that line only will draw when two horizontal or vertical radio button selected else it show a ...
1
vote
1answer
41 views

Graphic Only Moves 1 Pixel to the Right With KeyListener

I'm fairly new to Java programming and I'm working on my first 2D game. I followed one of Oracle's tutorials on Key Listeners in order to figure out how to make my player move with the WASD keys. ...
-3
votes
1answer
55 views

shuffle button in puzzle of 15 button in java [closed]

Hi I have the following java program where I deploy the 15 buttons and 16 button space is blank, now desire disorder and that the buttons are messy for that in the event of my button start calling the ...
-1
votes
2answers
49 views

paintComponent on JPanel not working

I've spent almost 2 hours now on it but I can't get it working. I just want to paint a image on a JPanel. I want to paint the imageChaser image on the arena JPanel. But it's not displaying. What am i ...
1
vote
1answer
65 views

Do I need to extend JPanel for paintComponent?

Can anyone give me a link (I have looked, almost, everywhere) to the documentation about how to use paintComponent, I am just looking at displaying a .png that I can change the x, y co-ords (from ...
0
votes
1answer
41 views

Adding multiple graphic objects to one JFrame

Here is my code it is a guy and a background but only one thing shows up at a time or sometimes nothing at all. I have a brain class, a frame class, a redPlayer class, and a background class. The way ...
0
votes
1answer
43 views

Making a graphics object move

In my code I override the paintComponent method and draw a rectangle inside JPanel. The JPanel is then added to JFrame and I use a method that updates the position of the rectangle via a Thread. The ...
0
votes
1answer
62 views

NullPointerException in java exercise assignment

He I am a beginner in java and I am working on a exercise where I need to draw a car. The code in my book does not work and I don't know why. I am not a total noob to java I know classes, objects, ...
0
votes
3answers
45 views

Label inside Circle

I want to put text ( must be formatted with HTML, so I can't use drawString in PaintComponent) inside Circle. Problem is that "paintComponent" is called after drawing label, so it covers my text. How ...
0
votes
4answers
65 views

Dynamically change Background Image of a JPanel

Trying ti change the BG image of a jpanel but i cant call poaint on any normal method, it works great when i'm building the constructor but i don't want to rebuild the constructor. .... Sort of ...
0
votes
1answer
80 views

How to set each rectangle color randomly with setcolor

I'm trying to make 3 different colors which are red,blue and green. My goal is when a rectangle created, i want to call the color function. The colored box should moving down, but when it placed other ...
1
vote
1answer
28 views

Grey screen in Netbeans

so i using netbeans, and i'm starting to get into coding games... and i've done this so far with no errors, however when i run it just a grey box with my title "zachs game appears and thats it.... ...
0
votes
1answer
32 views

Multiple problems regarding Java paint program while painting

I have a Java paint program, and I've got two problems to do with it. Both problems are relatively simple, and just regard how the mouse input is handled and how the image uses colors. Here's a photo ...
0
votes
1answer
55 views

paintComponent not working

this may be a silly question but How do i call the paintComponent? Its not displaying the object at all. its within the, public class Ball extends JPanel implements Runnable. public class Balls { ...
2
votes
1answer
46 views

Why do statements get executed more than once in paint or paintComponent methods?

I am trying to draw and paint some geometric shapes based on some calculations inside the paint() or paintComponent() methods. However, I realized that the printing and other calculation statements ...
0
votes
3answers
62 views

Why doesn't this Java paint program paint more than one oval?

I have a Java paint program that uses a custom JPanel to paint on. While when clicking on the JPanel paints a small oval (or circle, if you will), the oval disappears each time you click on another ...
0
votes
3answers
70 views

How do I make this alternate colors by just using the spacebar?

import java.awt.*; import javax.swing.*; import java.awt.event.*; import javax.swing.border.*; public class TrafficLight extends JFrame implements ActionListener { JButton b1, b2, b3; ...
0
votes
1answer
43 views

Move a rectangle in a JPanel using the keys

I have a class called "DisplayPanel" (which extends JPanel) and I draw a square there that comes from a class called "Square" (which extends JComponent). How to move a rectangle in a JPanel using the ...
1
vote
2answers
44 views

Swing Worker : function get()

My problem is that I don't understand how the swingworker works because what I'm trying to do is to make fa=worker.get() because I have a long method which compute a lot of points running in ...
-5
votes
1answer
30 views

Center Align a rectangle in Java Frame/Panel [closed]

Trying to create a bull' eyes program using paintComponent. I want the rectangle to be in the center of the screen. How do i do that?
0
votes
2answers
25 views

How to draw the label onto a custom JButton?

I extended the JButton class to make my own custom version, but now I don't know how to make the JLabel appear over it. In a normal button, the JLabel is painted on top of it, but I don't know how to ...
-1
votes
2answers
33 views

Slow movement using paintComponent method

I decided to re-write my game using Swing's painting technique paintComponent() method(someone on SO actually told me to use this method). I decided to use JPanel as the game's base instead of Canvas. ...
-1
votes
1answer
16 views

Image will not dispose upon keyPressed Java

I am drawing on an image on JPanel's graphic context. However the image does not remove itself from the graphics context when I press S. I know for sure my keyListeners are working. If I am ...
0
votes
1answer
34 views

Calling repaint() in paintComponent() is using too much CPU

Hi so recently I wanted to make my own interface in Java and hated the Windows scroll bar(I was adding a JList). So I decided to mimic Facebook's scrollbars(not completed yet since I ran into this ...
0
votes
5answers
63 views

Java - Swing - Graphics 2D

public class Points extends JPanel { public void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2d = (Graphics2D) g; g2d.drawLine(60, 20, 80, 90); } } I'm not really ...
2
votes
1answer
32 views

Drawing to a specific JPanel

I'm trying to remake Minesweeper, but I am having problems displaying the numbers behind the buttons once I add other components into the screen, like the mine counter. In this particular case, I ...
0
votes
1answer
37 views

how to draw multiple rectangles

so I am trying to make a simple program where you click on the screen and it creates a block that falls and collides with a larger block beneath and sticks to it. Kind of like a simple collision ...
0
votes
0answers
38 views

Flickering JLabel

For some reason, the JLabel is flickering when drawn on the top layer. The smaller the label, the worse the flickering. Below is an excerpt of my code. long startTime = System.currentTimeMillis(); ...
0
votes
0answers
31 views

Netbeans paint component

Is this correct direction to draw a point on panel? Everything is working fine but I don't know if it is a correct way to draw something. public void paintComponent(Graphics g) { ...
2
votes
1answer
39 views

Always null from BufferedImage in paintComponent

I want to create FinalImage with using 2 images (after load from file) and show it. So I created class: public class ImagePanel extends JPanel{ private static final long serialVersionUID = 1L; ...
8
votes
4answers
135 views

Compare sorting algorithm

I implemented different type of sorting (bubble, insertion, selection). Know I want to compare their implementations like the following for each sort (here's an example with the bubble sort) : For ...
0
votes
0answers
24 views

Animations show up in Eclipse but not in the runnable .JAR file

I ran into a problem when coding a Space Invaders clone for school. It regards the animated explosions shown. I first used the following method to create the image: ImageIcon icon = new ...
0
votes
0answers
10 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 ...
1
vote
3answers
56 views

Aligning Shape's Center to JPanel's Center

I have been trying to align my java2d shape's center to the JPanel's center with no success. I was able to do it for an image and many 2D shapes like parallelogram using getBounds method but not for ...
1
vote
1answer
90 views

How can I fix this code bug? [closed]

I am trying to make an image editing application in Java using the MVC design pattern. So, event handling is in a controller, state and operations relevant to the state are stored in models, and ...
-5
votes
1answer
55 views

C++ equivalent of Java's paintcomponent? [closed]

After a good year on java, I've come to use the paint component so I can "visually" see my programs work. I want to learn c++, but I simply cant visualize my programs by the console. Is there any ...
1
vote
2answers
101 views

Java - JPanel with background image AND normal functionality

I've been looking around and working on making a JPanel able to have an image background. I know there is a ton of information reguarding this ( example 1 and example 2 ). Neither of these are exactly ...
0
votes
1answer
32 views

Where should I put these fields in the MVC model?

Let's say I have three classes: JPSModel, JPSView extends JPanel, and JPSController. JPSView overrides paintComponent(), which draws an image at a certain zoomFactor at position (renderPositionX, ...
1
vote
2answers
89 views

passing data between JPanels

I'm making Tetris in Java and would like to have the game play on the left and scoring, buttons, and nextPiece on the right, like so: You'll notice that the score on the Game Panel is updating, but ...
1
vote
5answers
80 views

Reference of graphics 2d object doesn't work in orphan Thread

I am trying to design a simple game using Graphics2D in a JPanel. I am able to draw normal objects by overriding the paintComponent() method. But when I reference the Graphics2D object inside a orphan ...
0
votes
1answer
76 views

Does g.drawImage() render only the part of the image visible on a JPanel, or does it “keep in mind” the rest of the image?

Let's say we have the following code: (in a class that extends JPanel): public void paintComponent(Graphics g) { g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null); } If dx1 and ...
0
votes
0answers
37 views

Java painting in resolution

I'm trying to understand the resolution concept of painting with Graphis2d. Java tells us that every 72 pixels will equal 1 inch when printed. My question is, how dose resolution factor in. If I ...
1
vote
1answer
43 views

Load an image into a JPanel in an applet

base on this thread :Java: Load image from file, edit and add to JPanel i tried to load na image into a JPanel but its not painting it,so here s the deal, as suggested i have created a new class file ...
1
vote
1answer
150 views

Paint Component not working outside of Eclipse

I really don't understand this. When I run my program in Eclipse, it looks perfectly fine. It appears below: Chemistry program when run from Eclipse (note that I dragged something over to cover up ...
0
votes
2answers
65 views

Why do getWidth() and getHeight() return 0 before paintComponent() is called?

I have a GUI that displays an image on a JPanel in paintComponent() with g.drawImage(). I wrote a subclass of JPanel called CanvasPanelView to override paintComponent() and do a few other things, like ...
1
vote
1answer
35 views

Java Program Not Drawing Vertical Grid

So I have the following code (sorry if its messy), and when the I press the button "Show Vertical Grid" It doesn't want to switch the vertical grid on. Can anybody fix this please? Im all out of ...
0
votes
1answer
53 views

I need to set a background image for a java DesktopApplication

I didn't know how, and there is no background image property. I researched the answer but all I could find was to set a labels icon inside a panel with a null layout. This worked and my image is ...

1 2 3 4 5 11