0
votes
0answers
38 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
votes
0answers
19 views

How to save image from applet to a file? [closed]

I am creating a RGB Filter application using applets. The application runs perfectly and the filters are working as intended. What I am not able to do it find a way to save the Current Images from the ...
0
votes
1answer
44 views

AffineTransform doesn't move image on key presses

I'm having a bit of trouble developing my first Java game using images instead of vector graphics. Currently I'm experimenting with moving an Image on a key press with the AffineTransform object. Only ...
0
votes
1answer
75 views

java applet display image from localhost

I have an image on Apache server that is oversaved 10 times in second by programm in cpp. I would like to display on website this image that looks like animation. I wrote this script and its works in ...
0
votes
2answers
56 views

Java Applet to BufferedImage [duplicate]

I created a JFrame that loads an external applet for a game like so: //Setup everything for the Stub.. Below adds the stub to the applet and creates it. DownloadFile(new URL(World + "/" + Archive), ...
0
votes
2answers
92 views

How to get image location using php and send it to an applet?

I am creating a project which is created using Applets. In my project I am using applets to create effects for the image. Initially I did the project with just 1 image stored at the same location as ...
0
votes
2answers
76 views

images do not appear on my java applet

Hey I'm trying to create a video game and I'm testing to see if I can make a sprite or image appear on the applet I've asked for help before from my peers and professor, but they don't seem to help. I ...
0
votes
1answer
70 views

Set path in Java applet

How do I draw an image from a file in an applet? import java.applet.Applet; import java.awt.Graphics; import java.awt.Image; /* <applet code = "DisplayImageExample" width = 500 height = ...
0
votes
1answer
35 views

Error with Icon class that sows up only on web not with aplet-viewer

I have a class that loads a array of icons, my applet uses 2 such arrays, one for images and one for their thumbnails. I have a animation thread that rotates a set of 6 thumbnails through the array of ...
0
votes
1answer
116 views

Image not being displayed properly in applet

i want to add a image at 615,50 in my applet . image name is logo1.jpg . but the following code only prints d image.. when i compile and then run using applet viewer. only the image logo1 shows at d ...
0
votes
2answers
95 views

Display image on applet

I am using Jtree for listing various images of a directory, I want to display image on applet when the user click on the image name displayed in the Tree, the code i'm using is as below, ta is an ...
0
votes
0answers
76 views

How many init methods in a game?

Can there be more than one init( ) method in one game applet? If not, how to load an image in every class file separately if the init( ) method would just be in the main class?
0
votes
1answer
76 views

Applet deck of cards no display?

I have a program that has a deck of cards, shuffles the deck and then gets 10 random cards and displays them in two rows of five each. I have the program compiled, and the html page compiles, but ...
1
vote
3answers
45 views

How can I make an image available for an online user to save/download that I've created with a Java Applet?

I asked a question on here once before and got some great help and advice from a lot of knowledgeable people so I thought I'd try this again with another programming issue I'm having. Here is the ...
0
votes
1answer
151 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
2answers
214 views

ImageIO issues in Java

The issue I'm having is I cannot see any of the pictures I'm referencing with the ImageIO class on my Applet Viewer in JAVA. I was following a tutorial online and have yet to hear back from the author ...
1
vote
1answer
194 views

Save drawing on Jpanel as image

I am developing a drawing program using java socket. Multiple users can draw and save it as jpeg. Currently my save image function only save a blank canvas. It cannot save the co-ordinates drawn. I ...
2
votes
1answer
105 views

Load images on an applet HTML

I'm trying to make a simple game that only renders 4 images on screen randomly, but I want to put try it on a website on an HTML. When I test on Eclipse it works just fine, but when I put it on an ...
0
votes
1answer
443 views

Display multiple images in a single applet

I have to build a small Java applet for a project. I have previously never used applets. Hence I don't know much about the various inbuilt functions available. The layout of this applet is as below: ...
0
votes
0answers
53 views

Java JFrame Converted to Applet not Displaying Pictures

Ok scratch my first question, I got it loading in fine, its just that I have a single image for all my ground textures, like a spritesheet but just vertical, and it just gives me the first block ...
0
votes
1answer
61 views

Converted Java Game to Applet; Wont load pictures

So I made a pretty big game in Java, and I intended to put it on my site so I messed with it and turned it into an applet. It launches and runs perfectly fine, the only problem is it wont load any of ...
0
votes
1answer
71 views

Loading images in Java applet AccessControlError

I'm writing an applet that has to load images. When I run it through appletviewer everything works fine, so my code should be all set. When I try to open it in any browser though, I get the ...
0
votes
1answer
955 views

Java IO can't read input file?

I have just started learning java and I've been working on this code for a moving object with keyboard input. I am now trying to add in a background, but it keeps erroring with: ...
0
votes
2answers
331 views

How to use icon in Java applet?

I want to use my icon in a Java applet. How can I do that?
3
votes
2answers
359 views

Cropping an Image taken from Webcam using Java applet

My Requirement is as follows. Take a photo using webcam and provide an edit button to crop and save the image using a re-sizable rectangle. I have done the coding for webcam and taken the photo ...
0
votes
1answer
376 views

Convert java applet to black and white image

Im creating a Java applet for my website where users can draw an image by clicking and dragging the mouse. I then want to convert this image to a black and white image, in the form of a two ...
1
vote
1answer
292 views

How do I add images to an image array?

I am making an applet that displays a random collection of 10 cards based upon 10 random integers. My idea was to make an array of the 52 displayable cards (not including jokers) and display each ...
0
votes
2answers
168 views

Importing Images in a Java Applet

I'm trying to create an applet that loads 52 cards, shuffles them(using random number generator), then displays the top 10 cards of the deck in two rows of five. I have the HTML file with the 52 ...
0
votes
2answers
124 views

Java Applet can't load images from web

I have wrote my first java applet. It basically loads some images from my Django webserver and then the user can modify them. I developed it in Eclipse, and I had no problems at all. When I tried it ...
2
votes
1answer
472 views

How to stop the repaint() method from flickering

Basically when the screen refreshes, it flickers white and then a second later, it flickers again. I work on a mac and on eclipse the screen does not flicker but as soon as I put it into an applet, ...
-1
votes
4answers
799 views

How to move image in Applet?

I want to move the character left, right up, and down in applet, but it is not moving at all. here is my code, help please import javax.swing.JPanel; import java.awt.image.BufferedImage; import ...
0
votes
0answers
78 views

Create rectangle outside applet and take screen shot

I need to enable the user to create a rectangle anywhere on the screen. The problem is that it has to be anywhere and not in the applet frame. Then once the rectangle is drawn, a screenshot of the ...
2
votes
1answer
130 views

Saving an image to a server using a Java applet

I am trying to save a png image to my server that my applet (UNSIGNED) is running on. I have looked on here and have seen a couple of examples. What is the best way to do this? I am using PHP on my ...
1
vote
0answers
103 views

Grayscale image turns black when it is displayed in applet

IBM content manager stores all my images in grayscale but when I retrieve it and displays in applet,The grayscale doesn't converts in binary or remains as it is but it turns all black. What can be ...
0
votes
0answers
493 views

Java Applet Panel Background Image

I have an applet and I have buttons etc. I have a background image and I have added a panel and painted the image on it. See ImagePanel class please. I have tried two methods in the constructor, with ...
1
vote
1answer
250 views

Image not showing in applet

I have a small JApplet that is supposed to simply import an image and display it on screen. However, I am having some trouble with it. private Image logo1; public void init() { logo1 = ...
0
votes
2answers
195 views

Why won't my image display in my Java Applet?

When I use the following code: public void paint(Graphics g){ //Displays version number and name. g.setFont(new Font("Courier", Font.PLAIN, 10)); g.drawString("DCoder " + ...
0
votes
1answer
199 views

Take a “screenshot” of 3rd party applet in my webpage

I have a third party Java applet that I am going to embed in my webpage but I don't have access to the applet code. But I want to create a button on my page on clicking which will create a screenshot ...
0
votes
1answer
408 views

How do I use graphics2D in paint or is there a better way to do this?

I want to use graphics2D but I can't get I get it to display my graphics. Is there a better way to go about this that would allow me to use repaint()? Eventually I want to make have a image set as a ...
1
vote
3answers
366 views

Unable to save BufferedImage from applet using ImageIO.write

I'm loading a BufferedImage and drawing a rectangle over it. I then want to save the result as a png. But the image will not save using ImageIO.write. I don't thinking I'm drawing the image correctly. ...
0
votes
1answer
68 views

If I omit a particular line as commented in code , the code blocks, no input is taken and it freezes

the cut code: This is the code, I cant get rid of the line rendering the tank2, it works fine when I switch the client that is sending data to this server. This is the server side of the game I am ...
3
votes
1answer
435 views

Screensharing via Java Applet

I am looking for an addition for our "livestream and podcast" solution, which uses a camera to film speeches in our house. It has been requested to view the slides of our speakers directly as a image ...
1
vote
3answers
587 views

How to add image in the panel?

I want to add an image in the panel together with the description but the description appear only in the list whenever I choose a year in my combobox, the problem is that the image didn't show in the ...
0
votes
0answers
350 views

Loading images in Applet (#2)

My idea was to create an applet with multiple buttons in it, where clicking each button would show a different image and background. But with following code for just one code, it would get tedious to ...
0
votes
2answers
126 views

Adding image to JApplet

I'm trying to add an image to my JApplet, while also making sure that my image is in the same folder, I have tried changing the image extension to .png, .bmp and .gif with no luck, my code is pasted ...
1
vote
1answer
516 views

Loading an Image in an Applet without getImage()?

I usually load images in Applets using: this.getImage( getCodeBase(), "myimage.png" ); or myapplet.getImage( getCodeBase(), "myimage.png" ); But what if I want to load an image from another ...
0
votes
2answers
792 views

moving images in java applet

The question is about java applet programming I used a java applet to draw an image in the paint method using the following code: g.draw(Myimage,0,0,this); The image was drawn on the screen, ...
0
votes
1answer
187 views

Save image on server from signed applet

In my signed applet I have an Image object, Now I want to save this Image at getCodebase() by creating a new file. I use: File file2=new File(getCodeBase()+"newFile.gif"); file2.createNewFile(); ...
0
votes
2answers
110 views

Securing images used in java applets

I am using a java applet in my web project and some images are shown in this java applet. I want to limit users to pull images from the web page. What are possible techniques for a client user to ...
2
votes
1answer
300 views

Create image in browser from Image object

In my Java applet, I have an Image object. Now I want to open a browser window from this program and show the image from this Image object in the browser. The applet is sandboxed, so saving the image ...

1 2