Tagged Questions
Java 2D is an API for drawing two-dimensional graphics using the Java programming language.
20
votes
6answers
1k views
Game design in an OO manner
I'm designing a simple game, which uses Java 2D and Newtonian physics. Currently my main "game loop" looks something like:
do {
for (GameEntity entity : entities) {
entity.update(gameContext);
...
11
votes
11answers
3k views
Occasional InterruptedException when quitting a Swing application
I recently updated my computer to a more powerful one, with a quad-core hyperthreading processor (i7), thus plenty of real concurrency available. Now I'm occasionally getting the following error when ...
10
votes
2answers
5k views
Java2D Performance Issues
I'm having performance oddities with Java2D. I know of the sun.java2d.opengl VM parameter to enable 3D acceleration for 2D, but even using that has some weird issues.
Here are results of tests I ...
10
votes
3answers
2k views
Java2D: Is it always safe to cast Graphics into Graphics2D
Assuming we always use a Sun JVM (say, 1.5+), is it always safe to cast a Graphics reference to Graphics2D?
I haven't seen it cause any problems yet and, to my understanding, the Graphics class is ...
10
votes
9answers
7k views
Java 2D Drawing Optimal Performance
I'm in the process of writing a Java 2D game. I'm using the built-in Java 2D drawing libraries, drawing on a Graphics2D I acquire from a BufferStrategy from a Canvas in a JFrame (which is sometimes ...
9
votes
5answers
937 views
Detecting self crossing in closed Bezier curves
I've created a "blob" shape by patching cubic Bezier curves together (screenshot below). I'd like to be able to detect the situation where a curve has crossed over either itself or another curve and ...
8
votes
5answers
2k views
What are some faster alternatives to Java2d?
I'm looking to do some physics simulations and I need fast rendering in Java.
I've run into performance issues with Java2d in the past, so what are the fast alternatives? Is JOGL significantly faster ...
7
votes
4answers
744 views
How can I create a hardware-accelerated image with Java2D?
I'm trying to create a fast image generator that does lots of 2d transformations and shape rendering, so I'm trying to use a BufferedImage and then acquire the Graphics2D object to perform all my ...
7
votes
4answers
937 views
Java2D: scaling issues
I'm a reasonably experienced Java programmer but relatively new to Java2D. I'm trying to scale an image but I'm getting poor quality results. The image is a preview of a panel so contains things like ...
6
votes
1answer
191 views
Smoothing a jagged path
I was participating in the thread Image/Graphic into a Shape in Java? the other day and made a hackish attempt to get the outline of an image by adding a Rectangle iteratively to an Area. That was ...
6
votes
3answers
115 views
How to render a 2d image in Java
I have a quick question about Java. I'm sorry if this question is really basic, but I'm a beginner Java programmer :D
I want to render a 2d image in a window, but I can't figure it out. I've looked ...
6
votes
1answer
3k views
Is there a 100% Java alternative to ImageIO for reading JPEG files?
We are using Java2D to resize photos uploaded to our website, but we run into an issue (a seemingly old one, cf.: http://forums.sun.com/thread.jspa?threadID=5425569) - a few particular JPEGs raise a ...
6
votes
3answers
307 views
Does anyone know of a java2d text library?
This is what I need in my game regarding text:
Word Wrap Support given a bounding box
Vertical and Horizontal alignment given a bounding box
Now, I've been reading about how to use TextLayout, and ...
5
votes
3answers
64 views
Why doesn't the Graphics' draw method respect stroke attributes?
I want to create a custom border with rounded corners.
Code -
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Component;
import java.awt.FlowLayout;
import java.awt.Graphics;
...
5
votes
4answers
101 views
How to animate Rectangle on a Path2D object in Graphics2D context
I have just started learning basics about Graphics2D class, So far I am able to draw different objects and implements ActionListener to actually move them on screen by onKeyPress. So far so good, ...
5
votes
1answer
291 views
Java2D: BufferedImage not accelerated on Ubuntu
We are currently developing a game in Java using the Java2D API and are experiencing some strange performance issues when running it in an Ubuntu environment.
Our frame rate drops from an average of ...
5
votes
2answers
144 views
Which component to subclass to draw in Java2D (for a 2D game)
I have created my own canvas that has been extended from the JPanel, however I have noticed that w/ the content and so forth, that all of the sudden my FPS took a hit. I am following the swing rules ...
5
votes
3answers
270 views
How to create a big image file from many tiles in java?
My program produces 10 x 10 tiles images of 3000x3000 pixel, one by one (currently saved to 100 files named image_x_y.jpg)
I want to assemble these 100 images into one big image, without loading ...
5
votes
2answers
3k views
(Java) How can I create a Drop Shadow/Inner Glow/Outer Glow similar to Photoshop
I am generating some images using the Graphics2D interface, and occasionally I'd like to be able to draw some text on the image and apply to it effects like the ones in Adobe Photoshop.
Right now to ...
5
votes
3answers
10k views
How to draw a directed arrow line in Java?
I want to draw a directed arrow line through Java.
At present, I am using java.awt.Line2D.Double class to draw a line
g2.setStroke(new BasicStroke(2.0f, BasicStroke.CAP_BUTT, ...
5
votes
2answers
2k views
Lift image upload, resize, store in database, display
Is there a succinct example of how to upload an image, resize it, store it in a database and then serve the image up using Lift?
I'm sure I could piece it together from the file upload, Java 2D API, ...
5
votes
5answers
2k views
Best API for simple 2D graphics with Java [closed]
I'm not sure what the best api for simple 2d graphics with Java is. I know java.awt.Graphics2D was the standard but has it been replaced? Swing is the new API for Java GUI apps but it seems a bit ...
4
votes
2answers
119 views
How to draw on a JLabel?
I want to use the 2D Java API to draw on a JLabel that already has an image on it and then save the resulting edited picture.
I can't find any tutorials on this specific subject, does anyone have ...
4
votes
1answer
62 views
why isn't the panel painted?
CODE
import javax.swing.*;
import java.awt.*;
class tester {
public static void main(String args[]) {
JFrame fr = new JFrame();
JPanel p = new JPanel();
p.setBackground(Color.RED);
...
4
votes
3answers
146 views
Are actors the right tool to implement the messaging between a simple multiplayer game?
I'm thinking about using actors for a simple Asteroid-like game written in Scala and Java2D, which can be played by two players in a cooperative mode.
Both players can control their own ship on a ...
4
votes
2answers
818 views
Java 2D scene graph library for GUI
I'm looking for a 2D scene graph library for building GUI applications. It should be fast, using Java2D and be compatible with Swing (embeddable in a Swing app and also display Swing components). ...
4
votes
3answers
533 views
how can I convert an RGB image to CMYK and vice versa in Java?
our web app let users download dynamically generated images in different formats (bmp, png and jpeg). Some of our users download the images for printing, thus we would like to allow them to choose ...
4
votes
3answers
228 views
“Zoom” text to be as big as possible within constraints/box
First problem: You have 400 pixels width to go on, and need to fit some text within that constraint as large as possible (thus, the text shall use that amount of space).
Throw in a new constraint: If ...
4
votes
4answers
292 views
Measuring time spent in application / thread
I am writing a simulation in Java whereby objects act under Newtonian physics. An object may have a force applied to it and the resulting velocity causes it to move across the screen. The nature of ...
4
votes
2answers
768 views
Java 2D Shading / Filling
I have created a "blob" from Bezier curves (screenshot below) and would now like to shade it in such a way that it appears pseudo-3D, with darker shading on all "left" edges and lighter on all "right" ...
4
votes
1answer
581 views
How to disable the default painting behaviour of wheel scroll event on JScrollPane
I recently purchased the book Filthy Rich Clients and i found it really useful and fun. Building on one example from the book i tried implementing a custom ScrollPane that displays a "shadow" on the ...
4
votes
2answers
2k views
Inside clipping with Java Graphics
I need to draw a line using java.awt.Graphis, but only the portion of the line that lies outside a rectangle should be rendered.
Is it possible to use the Graphics clipping support?
Or do I need to ...
4
votes
1answer
846 views
Java create anaglyph (red/blue image)
I'm writing a Java game engine (http://victoryengine.org) and I've been experimenting with generating "3d" images with depth that you can see with those red/blue glasses. I'm using Java2D for ...
4
votes
4answers
442 views
Horrendous Performance in a Simple Java2D App
I've just finished my entry for the 14th Ludum Dare 48-hours game making competition yesterday, and decided to do it in java using java2d for the graphics.
I'm not that familiar with the API and ...
3
votes
1answer
77 views
java2D pawns on a chessboard drag and drop
for a school project, I am making a chessboard in java.
there were certain limitations, being that we can't use images for any of the pawns. We needed to make a pawn out of multiple shapes.
For ...
3
votes
4answers
129 views
Drawing 2D graphics
I would like to make a simple game in Java that has already been designed. I just need a way to draw sprites, etc. It doesn't have to be anything complicated. What would be the first choice you'd ...
3
votes
2answers
115 views
Line2D decoration tips needed - Graphics2D
I have Line2D and Arc2D objects laid out on my JPanel by Graphics2D drawing. You can have a look a part of it on this question " How to make pixel perfect Line2D in - Graphics2D ". Now what I want to ...
3
votes
2answers
178 views
PNG - Is it possible to reduce the palette using Java 2D?
If I have a PNG image opened as a BufferedImage, is it possible to reduce the palette in the PNG image so that there is less colour (less bits per pixel / colour depth)?
For example, if you look at ...
3
votes
2answers
246 views
How to create a curve between 2 points in 2D and get back Points that makes that curve every d distance?
I'm not good in math.
I have 2 points, A(x1, y1) and B(x2, y2) in 2D.
I need to create a virtual path from point A to B curved at R(radius), and then return an array of points which are describing ...
3
votes
3answers
117 views
How to draw a two dimensional graphic at Java?
I have 2 different lists. Each of them holds x and y value pairs(they have both positive and negative values). How can I draw them on a 2D axis? I want to put points for every value and they will blue ...
3
votes
2answers
331 views
AffineTransform without transforming Stroke?
When using the Graphics2D scale() function with two different parameters (scaling by different ratios in x- and y-direction), everything drawn later on this Graphics2D object is scaled too. This has ...
3
votes
2answers
263 views
Can't draw thin lines with Java2D
I'm trying to draw a polygon with a stroke of 1 pixel. Because the entire polygon is scaled by 100, I set the line width to 0.01. For some reason though, the polygon gets drawn with an on-screen line ...
3
votes
1answer
285 views
Java2D: Increase the line width
I want to increase the Line2D width. I could not find any method to do that. Do I need to actually make a small rectangle for this purpose?
Thank you.
3
votes
1answer
477 views
Java2D Distance Collision Detection
My current setup is only useful once collision has been made; obviously there has to be something better than this?
public boolean CollisionCheck(Rectangle rect1, Rectangle rect2) {
...
3
votes
3answers
1k views
Collision Detection - Java - Rectangle
I would like to know if this is a good idea that conforms to best practices that does not lead to obscenely confusing code or major performance hit(s):
Make my own Collision detection class that ...
3
votes
1answer
130 views
Need help understanding the affect of two java gui-related system properties
I had a problem envolving a mixing of lightweight and heavyweight components in java.
Weird swing heavyweight & lightweight mixing problem
A solution that was suggested to me (outside stackoverflow) ...
3
votes
3answers
387 views
Best approach to storing image pixels in bottom-up order in Java
I have an array of bytes representing an image in Windows BMP format and I would like my library to present it to the Java application as a BufferedImage, without copying the pixel data.
The main ...
3
votes
2answers
789 views
Java swing small 2D game: how to modelize the view?
In a small java swing 2D game, what is the best solution for creating the board view?
Use a component for the board and custom paint it and each square of the checker at once?
Use a component for ...
3
votes
3answers
1k views
How do I do double buffering in Java2D?
I'm drawing a bunch of primitives using Java2D on the screen and I'm getting a lot of tearing/flicker.
How can I enable/use double-buffering so it draws it off screen then shows the whole thing?
3
votes
6answers
627 views
Low-hanging graphics programming fruits?
I'm currently working on a tile-based game in Java2D, and I was thinking of adding some cheap eye candy.
For example, implementing a simple particle system (maybe something like this) for explosions ...