Tagged Questions
The graphics2d tag has no wiki summary.
9
votes
1answer
148 views
How to make pixel perfect Line2D in - Graphics2D
G'day, I have JPanel with some Line2D objects on it. Issue is when I draw this line it doesn't appear as I want them to. Lines are not smooth, It's hard to explain in word so I am posting an Image,
...
7
votes
4answers
387 views
Porting Java class and methods to Android. (TextLayout, Font, Graphics2D, & more)
I've been toying around in Android and attempting to port over a Java app. Below are some questions regarding to issues I've run into and would like some guidance on.
It is a rather large question ...
6
votes
1answer
160 views
What buffering strategy should I use for my 2D scrolling map?
So, I'm creating a 2d top-down game in Java.
I'm following instructions from Java 2D: Hardware Accelerating - Part 2 - Buffer Strategies to take advantage of hardware acceleration.
Basically, what ...
6
votes
1answer
1k views
Problems with newline in Graphics2D.drawString
g2 is an instance of the class Graphics2D. I'd like to be able to draw multi-line text, but that requires a newline character. The following code renders in one line.
String newline = ...
5
votes
1answer
119 views
Passing current Date
Seems like as not possible to fix Graphics2D lack in code, there I must to set fix size for animations, otherwise some Start outside Rectangle 490 x 490 freeze or shaking on the screen
my SSCCE
...
5
votes
4answers
104 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
4k views
Using Graphics2D to overlay text on a BufferedImage and return a BufferedImage
I have checked similarly named questions, but they don't answer this use case.
Basically, I was to overlay some text (text) at a given coordinate (x,y) I have the below function in a package;
...
5
votes
1answer
2k views
Where's Polygon.Double in Java?
Once again I'm doing Java graphics (Graphics2D) but I noticed there is no Polygon.Double or Polygon.Float classes whereas there is Rectangle2D.Float and Rectangle2D.Double class.
Does anyone know why ...
4
votes
3answers
100 views
Why can't I access my panel's getWidth() and getHeight() functions?
I'm writing a simple program to test out basic GUI. The program prints a letter in the middle of the screen and allows the user to move it with the arrow keys. Everything works fine, but when I try to ...
4
votes
7answers
194 views
Swing HTML drawString
I'm trying to create some special component for a specific purpose, on that component I need to draw a HTML string, here's a sample code:
public class MyComponent extends JComponent{
public ...
4
votes
2answers
366 views
Rotate a Java Graphics2D Rectangle?
I have searched everywhere and I just cant find the answer. How do I rotate a Rectangle in java? Here is some of my code:
package net.chrypthic.Space;
import javax.swing.*;
import java.awt.*;
import ...
4
votes
2answers
98 views
Curious why my image isn't showing up
Just using the paint method and my image won't show up initially. Once I minimize the java window and resize it, the image shows up. Is there any code I'm missing?
public class Lil extends JFrame {
...
4
votes
4answers
172 views
Resize drawing to match frame size
I've written an app that custom draws everything inside paint() based on fixed pixel positions. Then I disabled resize of the frame so its always visible.
However, now I would like to be able to ...
4
votes
3answers
409 views
Why does this image look so bad after being scaled down in Java?
Here is the original image: http://rank.my/public/images/uploaded/orig-4193395691714613396.png
And here it is scaled down to 300x225:
...
4
votes
3answers
304 views
Kerning problems when drawing text character by character
I'm trying to draw strings character by character to add lighting effects to shapes composed of text.
while (i != line.length()) {
c = line.substring(i, i + 1);
cWidth = ...
4
votes
3answers
667 views
Java - Filling a Custom Shape
I have created a custom shape, essentially it is a collection of four Arc2D objects.
When these arcs are drawn they form what could be considered a four point rounded star shape, kind of like a ...
4
votes
2answers
1k views
Clear a transparent BufferedImage as fast as possible
I have a transparent BufferedImage created with the following code(not relevant how it is created, I think):
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
...
3
votes
3answers
98 views
drawing a simple line graph in Java
In my program I want to draw a simple score line graph. I have a text file and on each line is an integer score, which I read in and want to pass as argument to my graph class. I'm having some ...
3
votes
2answers
105 views
Graphics2D and JComponent
I have not used Swing/G2D much, so please be patient.
I have the following class which is a component on my GUI (meant to be a kind of Canvas to draw on):
import javax.swing.*;
import java.awt.*;
...
3
votes
1answer
67 views
How to create a rectangle in a rectangle?
In my paintComponent, I have drawRect, which draws a single rectangle. However, I want to make the outline of the rectangle thicker but I don't know how. So I thought of making another rectangle ...
3
votes
2answers
68 views
java.awt.print only prints the first page
i m trying to print a list according to the print example in oracle's web page and for some reason it would only print the first page of the list
i took the printing sample from oracle about basic ...
3
votes
6answers
254 views
How do I draw graphics to PDF using iText?
I am trying to complete an example that draws graphics and writes them to PDF, but I keep getting errors that the PDF has no pages. if I add something simple with document.add() after opening it works ...
3
votes
1answer
87 views
Print JFrame by splitting to multiple pages
I want to print JFrame by breaking it into parts and printing each part on each page by zooming the part.
Suppose the JFrame is of size 100x100. Then I want to divide the JFrame into cells each of ...
3
votes
1answer
160 views
Java JFrame size and centre
I'm working on a uni project which is to create a dice face using 2d graphics shapes. I have got that all done but I have a problem: I want my shape to change size when I adjust the window size, ...
3
votes
1answer
104 views
Making margins smaller - Java Printing
I am using this code to print on paper:
//Overriden from printable interface
public int print(Graphics g, PageFormat pageFormat, int pageIndex)
throws PrinterException {
if ...
3
votes
2answers
95 views
Java Painting a Triangle and Trying to use other Swing Objects
I am having a bit of an issue using Netbeans to design a GUI (Yeah im lazy :\ ) and manually trying to paint a triangle onto the JFrame. The Swing Components are 'covered up' until I press tab and put ...
3
votes
3answers
130 views
Repainting in Swing JComponent after an interval
I have been assigned a project where I have to make an analog clock using the GregorianCalendar object in java. First, we were told to get the clock working, so that it shows the proper time on each ...
3
votes
1answer
80 views
Trying to add a dynamically positioned image in a JPanel on a button click
I am trying to add/draw a single Graphics object to an existing JPanel. I am generating 10 initial Graphics objects randomly sized and place in the panel, but would like to add additional drawn ...
3
votes
4answers
161 views
How to move the image inside the JApplet in vertical line?
I have displayed an image(ball) inside the JApplet, now I want the image to move in a vertical way (up and down). The problem is I don't know how to do it.
Could someone has an idea about this ...
3
votes
2answers
117 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
1answer
90 views
VolatileImage JFrame on multiple screens
I have a JFrame in which I am using Graphics2D to draw a VolatileImage using this tutorial. I have mainly copied the code to see how it works, but have slightly edited it for my game. I am running my ...
3
votes
1answer
98 views
Java resizing center of image
I was looking something else up the other day and feel like I remember running across a way to resize an image but keeping an area along the sides of the image unaltered so that the rounded edges of ...
3
votes
1answer
230 views
Scaling diagrams in Java to fit one print page
I have a diagramming tool that uses Java and Graphics2D. I would like to scale the resulting diagram so it fits exactly into an 8.5 x 11 page (landscape) when printing.
I saw somewhere that page ...
3
votes
1answer
69 views
java: Graphics2D version of polyline?
OK, so there's a Line2D and a Rectangle2D that can be used by Graphics2D.draw() instead of Graphics.drawLine() and Graphics.drawRectangle().
Is there a similar "upgrade" for Graphics.drawPolyLine()?
3
votes
1answer
128 views
Graphics2D: Should I use the int or float versions?
Some of the Graphics2D methods, such as drawString, have versions that take coordinates as int or float. Are there any reasons to choose one over the other?
Likewise, should I use the newer Shape ...
3
votes
1answer
114 views
Drawing an image from right to left
I have to draw a colored map on a graph. The problem is that my graph can have its origin at the right or the left.
Is it possible to draw from right to left ?
double origin_x = ...
3
votes
3answers
154 views
Redrawing graphics in Java
I'm just getting into graphics in Java and I have a problem. I created a JFrame window (NetBeans Designer) with a JPanel panel and I drew some graphics on it. Then I added a JButton that changed a ...
3
votes
3answers
711 views
Java Rotating BufferedImages
I am having trouble getting a rotated BufferedImage to display. I think the rotation is working just fine, but I can't actually draw it to the screen. My code:
Class extends JPanel {
...
3
votes
2answers
246 views
How can I make a non-Swing button in Java?
I am creating a game in which I have a menu with multiple views for selecting game type, options, etc. using game state transitions. Each of the menus will be actively rendered within a JFrame on ...
3
votes
3answers
574 views
Java - best library to help draw text at arbitrary anchor points
I'm familiar with how to use the various FontMetrics functions to center text vertically, horizontally, and whatnot. However, I am looking for a library that supports drawing text at a given xy ...
2
votes
1answer
53 views
Resize Graphics2d into JScrollPane
In connection with question Resizing a component without repainting is my question how to create resiziable custom Graphics2d in form
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
...
2
votes
2answers
67 views
How do I stop the screen from flickering when drawing?
Here's my code:
public class Game extends JComponent implements Runnable {
World w = null;
Keyboard keyboard = null;
Thread game = null;
/** The constructor. I would like to ...
2
votes
1answer
31 views
Rendering Rotated Images
Why is the following code not rendering the image at an angle.
(I want the image to be rendered on an anchored point on the image). I think that it is rotating around the screen. How can I fix this?
...
2
votes
1answer
66 views
Flickering while dragging in Swing
I have such code:
public class DpDropTargetListener implements DropTargetListener {
public void dragOver(final DropTargetDragEvent dtde) {
...
if ...
2
votes
1answer
123 views
Stretch a JLabel text
Is there a way to make a JLabel's text stretch to 100% height? I need the text to update when the component's size changes as well.
I saw some solution that could work; It involved calculating and ...
2
votes
2answers
84 views
Drawing Transparent Images In Java Graphics2D
I want to draw a PARTIALLY transparent image on top of another (Making shadows over things). I am currently using java's Graphics2D class to render, I've been told to set the composite to ...
2
votes
1answer
57 views
How do I get a Graphic2D object to follow a mouse pointer exactly in Java?
In the code below I have simply used a mouse listener to get the XY coordinates of the the mouse, and then call for a repaint. Within the paint method I've drawn a rectangle using the same XY ...
2
votes
2answers
49 views
JComponent size issue
I have a JComponent subclass that I am using to draw shapes onto my screen. In the constructor, I am trying to set ballX and ballY to half of the X and Y size values of the JComponent, and I think I ...
2
votes
1answer
117 views
How can I make a counter-clockwise rotation of the image in java?
I have an image and I want it to move in a counter-clockwise direction and that is my problem. I have a code but it seems my code doesn't work properly. You can check my code if where I've made my ...
2
votes
2answers
56 views
why is it only painting one of the components?
package puzzle;
import java.awt.Color;
import javax.swing.*;
import java.util.*;
public class Puzzle {
Integer x = 50;
Integer y = 50;
int x2 = 100;
int y2 = 100;
int vnotx = 0;
int vnoty = 0;
...