Graphics2D is the part of the Java 2D API related to two-dimensional graphics, text, and imaging capabilities. Unlike the older Graphics class, Graphics2D supports coordinate transforms. It also gives better control over geometry, colors and text layout.
0
votes
2answers
31 views
Line not appearing on JDesktopPane
I want to draw line between two JPanels but line is not appearing on layeredPane.
This is what i have done please go through it, compilable.Do try and correct this code. I have tried on drawing lines ...
0
votes
2answers
40 views
Drawing line between two JPanels
I want to draw lines between two JPanels ; please verify my code as its giving an NULL pointer Exception at
"g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);"
...
0
votes
0answers
31 views
JAVA - How to rotate an ImageIcon to face the mouse position? [duplicate]
So lets say i have an imageicon in the center of my screen. How can i use Graphics2d to help me rotate the image to the mouse position?
-2
votes
1answer
28 views
how to treat a shape as a graphics2D
I am doing a java project and I have a collection of shapes, i need to give a different color to every shape.
For example in the collection I have squares and rectangles, Then I need to draw the ...
1
vote
5answers
64 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
43 views
Graphics2D does PostModern
In the following code changing fill to draw produces unexpected results. The attached image demonstrates the undesired but much appreciated postmodern effect caused by drawing the red and green ...
-1
votes
1answer
28 views
How to setup desired Coordinates in Graphics2D
I want to set up a mathematical (where y grows up not down) coordinate space from (-1, -1) to (+1, +1) and have it fit in the window regardless of the window size.
I am using an anonymous JComponent ...
1
vote
3answers
44 views
How to create a Graphics2D instance?
What's the easiest way in Java SE 7 to obtain an instance just to plot a few points for debugging? Desktop environment.
0
votes
2answers
34 views
Rotating graphics
I am trying to make a bullet class. When it is called it will get a direction and an initial position. The problem is the direction is not working it only goes up no matter what I set as the ...
0
votes
1answer
25 views
Java fillPolygon(Polygon p) doesn't work when p is circle contour?
I have here a situation, I can't handle by myself.
I'd like to draw and fill Polygon onto JPanel. I have written Moore-Neighbor Tracing algorithm ...
1
vote
1answer
30 views
Java AWT/Swing : paintComponent issue with custom JPanel(s)
Ok, so basically, what I have so far:
A main class that creates a custom JFrame (ApplicationWindow).
An ApplicationWindow class that extends JFrame and acts as the window.
A MapDisplayPanel class ...
1
vote
1answer
41 views
Graphics2D: null pointer exception when setting color
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;
import java.io.Console;
import java.util.Scanner;
import ...
4
votes
3answers
84 views
How does JFrame work? Deep inside, how does it draw stuff?
Typically, when I create a class, for example Customer, I give it some data fields, i.e. public int IdNumber; and some methods, i.e. public String getName(){...}. But that's pretty much it. I can't go ...
0
votes
0answers
37 views
How to go about creating a GUI for Conway's Game of Life? [closed]
I want to have a static grid with small cells that the user can click-drag his mouse over to select/deselect cells. On the bottom of this grid is a few buttons like start, clear, & random cell ...
0
votes
3answers
42 views
Java Graphics2D transparent background
I have a Graphics2D object and I want to set up the background of the object. It has a setBackground method, which has a Color parameter. This way I can set the color of the background.
My question ...
0
votes
0answers
7 views
Create ImageBuffer from Byte Array, rotate and store in Byte Array again
We use a database where we store images in bytes. I would like to offer our user base the opportunity to rotate the image in 90 degree intervals. Consider my snippet below. It processes without ...
0
votes
0answers
34 views
Decrease image size using BufferedImage
I want to crop an image for that I first convert tiff to jpg using bufferredImage below is the snippet
BufferedImage outImage=null;
outImage = new BufferedImage(image.getWidth(null), ...
-1
votes
0answers
29 views
Draw an ArrayList of Rectangles
I am trying to draw an ArrayList of Rectangles on a JFrame.
Here is the following code I have so far:
public class YarsShipPanel extends JPanel implements ActionListener {
private Timer t;
...
0
votes
1answer
22 views
Scale an image with Graphics2D
In a game that I am making I want the power ups to be airdrops. I have a image of a crate that I want to be draw bigger than I have drawn it. Then I want the image to become progressively smaller with ...
2
votes
1answer
22 views
Disposing Graphics2D drawing after it is drawn
For a game that I'm working on I need to draw a rectangle that gets smaller and smaller. I have figured out how to draw the rectangle smaller by using a swing Timer like this:
timer = new ...
1
vote
1answer
39 views
Paint a java.awt.Cursor on a java.awt.Graphics
Is it possible to get hold of a standard AWT Cursor in the form of a bitmap image (e.g. BufferedImage) or anything paintable on a Graphics2D? For example, the text cursor new ...
3
votes
1answer
77 views
Java graphics2D fillRect does not work properly with semi-transparent colors
I was writing a program with some custom rendering, and needed to render a rectangle with a border. I decided to simply call graphics2D.fillRect(), switch to the border color, and call ...
0
votes
1answer
27 views
Clear image with transparent background in java
I am drawing images in paintComponent(Graphics g) method in order to make them compatible with Retina displays
g.drawImage(image, 0, 0, imageWidth/2, imageHeight/2, null);
Everything works ...
0
votes
0answers
27 views
What is the most efficient way to blend 2 BufferedImages that will not blend on transparent areas?
this is my first time here. :)
I have been learning Java for a year already but I am still quite troubled with Image Processing.
This is what I want to achieve:
Basically the first BufferedImage ...
0
votes
0answers
26 views
Getting a specific Object from an ArrayList so that it can be assigned other values than the other Objects in that ArrayList
In a game that I'm currently working on the enemies have a health bar over their heads. I spawn the enemy using an ArrayList like this.
zombies.add(new Zombie(randomXSpawn,randomYSpawn));
Later on ...
0
votes
2answers
43 views
Java: Drawing graphics from an array
I'm working on my first java game for a school project, and I'm having some problems drawing the graphics based on information in an array.
What I'm basically trying to do is to create a 2D array ...
0
votes
0answers
33 views
Java is not plotting rectangles correctly?
I am making a java application that will plot points in the mandelbrot set. Here are my classes:
public class Mandelbrot {
public static void main(String[] args) {
//initialize frame and ...
0
votes
2answers
42 views
C# Equivalent to java's Graphics2D
I've recently started about thinking about making a 2D game engine in C# from scratch.
Now, I've wondered: In java, I'd use the java.awt.Graphics2d and java.awt.Container classes.
What would you ...
0
votes
2answers
44 views
Rotating an Object
I know how to rotate the image but how would I rotate the acctual Objet? I can't use g2d.rotate(); because I have multiple things drawn with the paint() method and I only wan't one of the to rotate.
0
votes
0answers
38 views
DnD from JTree to JPanel my Graphics2D class
I'm having a problem in finding some source code regarding to my case where I have my JTree at left JSplitPane and I just want to Drag and Drop my Graphics2D from other class to JPanel from the right ...
0
votes
2answers
42 views
How to Fill a path with a pattern in Quartz
I have created a view and in my draw rect method I create paths depending on what a user does with sliders. Using standard colors , everything works and looks very nice. I am trying to follow a code ...
0
votes
0answers
24 views
Affine Transform in Java that does not affect the Grid
I am trying to paint some 2D objects in java. I need to be able to:
Zoom in/out
Move the zero point around
Have an x-y grid under the objects
That's pretty easy:
AffineTransform trans = new ...
1
vote
2answers
89 views
Connect Four Falling Animation
I'm currently creating a connect four game for fun and was just about finished when I decided that it would be cool to add a falling animation. I know of a couple different ways to do this, but I'm ...
0
votes
3answers
37 views
Java: Plotting points uniformly on a circle using Graphics2d
I'm trying to draw a number of points on a circle such that each point is the same distance from the next. Eventually I'll be drawing lines between all of the points to make a little drawing. The ...
1
vote
0answers
41 views
Is there C equivalent's to Java awt.image.* [closed]
Does anyone know class similar to Java's awt.image.* for graphics in C (linux)?
Actually, I have to deal with transforming pixels into color components, Constructs a BufferedImage (built-in class) ...
1
vote
2answers
75 views
Infinite background for game
I am working on a Java project to simulate the flight of a helicopter in a frame. The helicopter moves on the screen using the arrow keys. I want the helicopter to be able to move infinitely, that is, ...
0
votes
1answer
34 views
Java rescaling an image creating half white half grey image
I am having a problem with the Grapics2D API, I am trying to re-size an image but instead of getting the smaller image its showing a half white and half grey area. what am I doing wrong? I tried with ...
0
votes
2answers
59 views
Scaling an image quickly, and making sure it actually scales
I am trying to scale a screenshot taken by:
robot.createScreenCapture(SCREEN_RECT);
Im trying to get it down to an image that is 600X400 and fits into a JFrame that is 600X400
My program is using a ...
0
votes
3answers
52 views
How to add multiple fonts to a string drawn by an Graphics2D object
I have a Graphics2D object and I want to use its drawString method. I can call that method and pass a String and (x, y) positions, which is very nice. However, I also have the possibility to change ...
0
votes
0answers
17 views
modifying off screen graphics
I'm starting a new paint project to get some experience with java. I've been working with Processing for a while, and I'm struggling to transition. The goal is to make a program in which several ...
0
votes
1answer
20 views
BufferStrategy not scaling Graphics2D
I am currently trying to program a simple platform game. I would like to scale the graphics up by a factor of 2/4/whatever so that I can get an old-school look and feel from the game. However, when I ...
4
votes
4answers
115 views
unable to complete the circle of a pie chart
I am working on a pie chart with 4 different elements. I can get the elements to appear in the JFrame but I cannot complete the pie chart circle. These are the elements:
public static class PieChart ...
2
votes
2answers
104 views
Drawing an object using getGraphics() without extending JFrame
How can I draw an object without a class (which extends JFrame)? I found getGraphics method but it doesnt draw the object.
import javax.swing.*;
import java.awt.*;
public class Main {
public ...
0
votes
0answers
63 views
Zoom in and out panel with drag and drop components inside
I have been working on the zoom in and out function using the Graphics2D scale.
Here is my code in paintcomponent:
g2.translate(zoomX, zoomY);
g2.scale(zoom, zoom);
g2.translate(-zoomX, ...
-1
votes
1answer
71 views
paintComponent generates too many rectangles
I've got a problem with paintComponent. I use "while" loop to draw rectangles. Every next rectangle should be smaller and rotated. And it works. But paintComponent executes twice, not once as I ...
0
votes
1answer
41 views
android equivalent code for graphics2D
I have been trying to get an android equivalent code for the following :-
private BufferedImage user_space(BufferedImage image)
{
BufferedImage new_img = new BufferedImage(image.getWidth(), ...
2
votes
1answer
50 views
Java - Creating an image
I'm currently working on a game in Java and am trying to create a background without using any image files. The image consists of a square split into 4 triangles, each of which is a different color.
...
0
votes
1answer
72 views
Mandelbrot set in java doesn't calculate correctly
I'm still relatively new to Java. I've been working on a program to display the mandelbrot set. My current code generates an image that is close, but not quite the mandelbrot set. This is my ...
2
votes
1answer
107 views
How to draw and rotate square inside center of other square?
I need to draw some squares inside other square but I don't know how to rotate my squares by center of them and make them smaller?
Here is a picture how it should looks like at the end:
Now I ...
0
votes
1answer
55 views
Drawing Rounded Rectangle
I am wanting to turn the example below in a figure that uses RoundedRectangles instead of normal rectangles, I know there are possibilities with the clipping frame.
But I don't really know how they ...
