How to add image in panel as background in net beans IDE?

How to add image in panel as background in net beans IDE?

How to add image in panel as background in net beans IDE?

View Answers

January 13, 2011 at 4:36 PM

Hello Friend,

Try the following code:

import java.awt.*;
import java.awt.image.*;
import java.io.*;
import javax.imageio.*;
import java.awt.event.*;
import javax.swing.*;

public class BackgroundImage{
public static void main(String[] args) {
JFrame frame = new JFrame("");
frame.addWindowListener( new WindowAdapter() {
public void windowClosing(WindowEvent e) {
Window win = e.getWindow();
win.setVisible(false);
win.dispose();
System.exit(0);
}
} );

JTextArea area=new JTextArea(15,4){

ImageIcon image = new ImageIcon( "C:/lily.gif" );

public void paint( Graphics g ) {
Dimension d = getSize();
for( int x = 0; x < d.width; x += image.getIconWidth() )
for( int y = 0; y < d.height; y += image.getIconHeight() )
g.drawImage( image.getImage(), x, y, null, null );
super.paint(g);
}
};

area.setOpaque(false);

JScrollPane sp = new JScrollPane( area );
frame.getContentPane().add( sp );

frame.setSize(300,100);
frame.show();
}
}

Thanks









Related Tutorials/Questions & Answers:
How to add image in panel as background in net beans IDE?
How I can Set Transparent Background Image to Panel - Java Beginners
Advertisements
How to add background image to div using CSS?
how to set background image
Background Image for Navigation Bar
how to get the image of a selected JRadioButton to another panel?
how to use a image in background in your application form?
background image
net beans
net beans
net beans
net beans
net beans
net beans
how to add panel inside frame?
UIView Image Background
set background image in javafx
NET BEANS
UIToolBar background image
UIView Background Image
how to create menubar and the below background color/image in java swing
how to run audio files in net beans using j2me
UITableViewCell background image
UIButton background image
net beans
net beans
UITableView Background Image
net beans
net beans
UITextField Background Image
How to Set Transperent Background Image to Jpanel - Java Beginners
Background image UIBarButtonItem
Photoshop change a background image
NET BEANS - IDE Questions
uinavigationcontroller background image
How to set iText pdf document background image - Java Beginners
background
ModuleNotFoundError: No module named 'idec'
Jmagick how to add image on an existing image
How will you add panel to a frame? - Java Interview Questions
net beans 4
how to generate PDF file using JSP with net beans
ModuleNotFoundError: No module named 'aldryn-background-image'
ModuleNotFoundError: No module named 'aldryn-background-image'
ModuleNotFoundError: No module named 'django-background-image'
ModuleNotFoundError: No module named 'python-idex'
ModuleNotFoundError: No module named 'python-idex'
adding background image - Java Beginners
Setting a Background image for UITableView in iPhone & iPad application.
How to change background, change background

Ads