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 add panel inside frame?
how to get the image of a selected JRadioButton to another panel?
how to use a image in background in your application form?
UIView Image Background
background image
net beans
net beans
net beans
net beans
net beans
net beans
set background image in javafx
NET BEANS
how to run audio files in net beans using j2me
Jmagick how to add image on an existing image
how to create menubar and the below background color/image in java swing
UIView Background Image
UIToolBar background image
How will you add panel to a frame? - Java Interview Questions
UITableViewCell background image
UIButton background image
net beans
net beans
net beans
How to Set Transperent Background Image to Jpanel - Java Beginners
net beans
UITableView Background Image
UITextField Background Image
Background image UIBarButtonItem
How to set iText pdf document background image - Java Beginners
NET BEANS - IDE Questions
Photoshop change a background image
uinavigationcontroller background image
background
ModuleNotFoundError: No module named 'idec'
how to generate PDF file using JSP with net beans
net beans 4
in my project, i have to add scrollbars to a panel,. i need some example on it,how to doit.
How to access the "Add/Remove Programs" list in Control Panel using Java Program? - Java Beginners
ModuleNotFoundError: No module named 'aldryn-background-image'
ModuleNotFoundError: No module named 'aldryn-background-image'
ModuleNotFoundError: No module named 'django-background-image'
How to change background, change background
ModuleNotFoundError: No module named 'python-idex'
ModuleNotFoundError: No module named 'python-idex'

Ads