Tagged Questions
-3
votes
0answers
17 views
Needing to generate tiles for top down, tiles not drawing in paint [closed]
import java.awt.*;
import java.applet.*;
import java.util.*;
import java.awt.Image;
import java.awt.Graphics;
import java.io.*;
import javax.imageio.*;
public class Sandbox extends Applet
{
...
0
votes
0answers
32 views
Applet image not loading
I'm trying to load an image into my Java applet and I've tried it several ways but the image still doesn't appear in the applet.
Here's my code:
public class BackgroundApplet extends Applet {
...
1
vote
1answer
21 views
Applet drawing in response to user input
I want the applet to draw a circle when the user hit on the jButton1, but the circle draws it self Spontaneously not in response to user input. i tried many methods i even searched for two days on the ...
0
votes
1answer
82 views
Java Applet adding thread makes while loop infinite
I am trying to make a program that generates 25 random ovals then draw a ball and make it bounce, I got it somewhat done, I generated the ovals and I got the ball to move but when I added the thread ...
-1
votes
1answer
94 views
Java Awt Pen Tool: Graphic disappeared [closed]
I'll try to implement a Java Applet with a Pen Tool.
When i start the applet i can draw correctly my lines on the window by pressing and releasing the mouse. After few seconds disappear everything.
...
0
votes
0answers
23 views
Make the lines hide(logically speaking) in applets
Hi i am developing a app where i draw large number of lines(color is given as black) and update them where i need to remove them from screen. So i thought of making there color to match with the ...
0
votes
0answers
30 views
JCheckbox weird graphics rendering
I'm having a problem with a program I'm making:
I'm using JCheckbox instances and Graphics2D but it seems that the
JCheckbox is causing a weird graphical glitch:
For those who don't see the image, ...
0
votes
1answer
123 views
How to create graphic instances in a java applet
We've just learned how to create our own class, and this particular assignment we had to work with graphics. We had to draw a crayon, and then create a test program where there are 5 crayons lined up ...
-1
votes
1answer
84 views
Paint over applet loaded with classloader
I was wondering what would be the best/easiest way to render my own graphics over an applet that has been loaded with:
public class Game {
public static Applet applet = null;
public static ...
0
votes
1answer
147 views
Java applet wont render an image (png)
When I run the game, I only see black screen, no image.
I'm programming my game with the help of kilobolt game development guide: http://www.kilobolt.com/day-4-enter-the-robot.html
I would really ...
0
votes
1answer
72 views
Mysterious NullPointerException in an applet using FreeHep library
I have an applet that visualizes a large graph using JUNG2. A while back I managed to add an export feature which allows the user to export the graphs to vector-based images, this time utilizing ...
3
votes
2answers
709 views
Issue in drawing lines while mouse dragging
I'm working on a paint applet that draws different shapes. I want to draw lines while dragging the mouse. The problem is that when the lines appear, they are as shown in the image below.
I have ...
0
votes
1answer
200 views
How do I get the canvas size in a java applet from Graphics?
The code that I have now gives me the size of the applet, not the size of the drawing area. How could I fix that?
public void paint(Graphics g)
{
g.setColor(new Color(255,255,255));
...
2
votes
1answer
175 views
How can people draw over java applets and still have full functionality?
I have tried multiple times to do this but they all fail. For example, the game RuneScape is a popular web game which uses an applet. There are botters which are able to draw over the applets and ...
1
vote
2answers
212 views
Applet event programming [closed]
i've made a smiley face in applet .. now what i want is that, when i move my mouse over the smiley it will change to sad face ....
i am not getting it(newbie in event programming) .... so please ...
-1
votes
1answer
1k views
java homework draw house applet
I'm working on a homework assignment to draw a house in a java applet. The house has three rectangles within a large main rectangle representing a door and two windows. I need the windows to change ...
1
vote
1answer
480 views
Why do my JButtons not appear until the applet is resize and my JCombo boxes are invisible until clicked on?
Hi first off I'd like to say I am new to the site and pretty new to programming (mainly with graphics) and I'd like to apologize in advance for asking any stupid questions. Also I'd like to thank ...
1
vote
2answers
3k views
How to create a Rectangle object in Java using g.fillRect method
I need to create a rectangle object and then paint it to the applet using paint(). I tried
Rectangle r = new Rectangle(arg,arg1,arg2,arg3);
Then tried to paint it to the applet using
g.draw(r);
...
0
votes
0answers
256 views
getFontMetrics() taking 8000ms on first call in Java Applet
Making a call to getFontMetrics()in my java applet is taking between 5000ms and 22000ms to return! Subsequent calls seem to take a negligible amount of time (0-16ms)
I have to admit I'm running on a ...
0
votes
0answers
156 views
how to shift my card image after drag in java applet
I am working on java game like rummy card game. now I have successfully draw 104 images now I have drag one image , now I want to shift this drag image onto (400,320) position. Also see that image is ...
1
vote
1answer
632 views
BufferedImage.getRGB method not consistent - Java AWT
I have am writing a small game using Applet. I want to be able to check the color of a pixel on the screen. However, when I use .getRGB() on my buffered image in my game loop (a while loop that ...
0
votes
2answers
325 views
Draw Image and ImageObserver in Java Applet
I'm using an applet to make a game and I'd like to make my characters be able to draw themselves in their own class. Currently, this is what I'm doing:
public void drawPlayer(Image img, Graphics g)
{
...
0
votes
1answer
101 views
Java paint() slower in browser?
Ive made a applet but it runs 4 times slower when i embed it into a webpage compared to the netbeans applet viewer, any ideas why?
example: 6000 fps in netbeans but 1500 fps in browser... O_o
0
votes
2answers
397 views
Draw a buffered image in an applet
What I'm trying to do is to get an already buffered image painted to a JFrame.
JFrame p1=new JFrame();
p1.getContentPane();
p1.setSize(new Dimension(h,w));
p1.setVisible(true);
...
2
votes
1answer
315 views
Java Applet: painted ball does not appear in the hard-coded position. Applet does not maintain constant size
I'm making an applet consisting of a ball that moves across the screen.
I set the ball's initial X and Y co-ordinates to be 0, however the oval is drawn at some distance from these points (See image).
...
3
votes
3answers
2k views
class can't be instantiated
I have a problem with java applet and graphics. I'm trying to run it in Eclipse and it fails.
Im new in java and i hope you can help me.
I have two files: Say.java and SayWhat.java.
Say.java:
public ...
-1
votes
1answer
193 views
How to draw oval upside down? [closed]
I need to draw my ovals upside down, so they would be equally lined on the bottom.
fillOval(int x, int y, int width, int height)
If I set a negative height, then there wont be anything painted, so ...
1
vote
1answer
148 views
Passing values to applets
I have a little problem with passing values from one class into another which extends the Applet class.
for eg. my From.java contains the following code:
public class From{
public static Graphics ...
0
votes
2answers
306 views
Drawing exotic fonts in a java applet
I'd like to draw symbols contained in exotic fonts such as Wingdings, Webdings (they are called dingbats : http://en.wikipedia.org/wiki/Dingbat) in a java applet. When using Graphics.drawString() I ...
1
vote
1answer
108 views
Program Graphical Model/Simulation of “Biological” Inheritance (not OOP Inheritance)
Okay, so I have an assignment to code (using Java,but I don't think that matters) a simulation / model of inheritance as in the Biology sense, not OOP , i.e you know, father with brown eye / hair, mom ...
2
votes
4answers
2k views
java drawing on JPanel with timer/delay
I'm trying to make a small Mosaic programm, that draws squares randomly all over the JPanel. I want to make it so, that it draws every 0,2 sec 1 square (not all at once), but so far i can make only it ...
1
vote
2answers
863 views
How to use Graphics out side the paint() method in my Java applet?
I want to use drawString() once a button is pushed to draw the answer on my applet but I can't figure it out. I have try many ways to do and my program compiles but won't drawString() when the button ...
3
votes
1answer
344 views
Java BasicStroke “Fuzzy”
I'm trying to write a simple paint applet with Java, but I'm having trouble with BasicStroke. Initially, my plan was to try to somehow draw a line with a width, but the API apparently doesn't support ...
0
votes
2answers
436 views
Hide/Dispose a DrawImage
I am writing a program that shows a image moving across the screen, however for the assignment I must use the drawImage method. I create a new Image called turtle, and then draw the Image at the one ...
1
vote
1answer
121 views
Painted Shapes are Flashy and Jumpy when Repainting?
I made an Applet that paints shapes in the Windows, then each frame, I make them go down to simulate Basic Gravity but the shape flashes alot ( Which is unwanted ) And I couldn't find a way to make it ...
1
vote
2answers
137 views
Problem with drawing
For now the following code is supposed to draw a circle onMouseDragged over the black Canvas.
Unfortunately it doesn't (=
Do I miss something?
Thanks in advance...
import java.awt.*;
import ...
0
votes
1answer
295 views
Java 3D in an applet?
I am looking to include a very basic 3D world in my applet, basically like 80x80x80(whatever units) box with moving cubes or something. The focus is not on the 3D world itself but rather to propagate ...
1
vote
3answers
601 views
Differences between Java applet and application graphic capabilities
Is there anything, talking about graphic capabilities, that a Java application can do, while an applet cannot?
I'm referring to java libraries (like Swing), not to native ones.
edit: I need to ...
2
votes
2answers
772 views
Temporarily disable double buffering in Java graphics applet
is there an easy way to disable double buffering in a java applet if necessary?
I have a java applet that displays and animates a musical score so I needed it double buffered. However for teaching ...
3
votes
8answers
1k views
Browser graphics: Java Applet vs Flash vs anything else?
We sell photoalbums which our customers create theirselves using a client album editor program (for Windows). Now we are going to develop an online program so customers could create their albums in ...
0
votes
4answers
750 views
drawing arrows on a line defined by a set of points( for tracking)
I have a set of points which define a route
and I must draw them so a vehicle's moving direction is denoted.
The points may be from a curve and I need to draw some arrows.
I want to draw ...
1
vote
3answers
4k views
Painting a Canvas in an Applet
I currently have a small Java program which I would like to run both on the desktop (ie in a JFrame) and in an applet. Currently all of the drawing and logic are handled by a class extending Canvas. ...
6
votes
2answers
6k views
Does anyone know of any good tutorials for the Slick 2D lib?
There is a 2D java graphics library called Slick 2D (http://slick.cokeandcode.com/) that seems to be used by a bunch of indie games (mostly applets), but the documentation is a little lacking. Does ...



