欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

java将图片铺满panel_如何让添加的背景图片铺满整个JFrame?

发布时间:2023/12/4 50 豆豆
生活随笔 收集整理的这篇文章主要介绍了 java将图片铺满panel_如何让添加的背景图片铺满整个JFrame? 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

参考这个看看

import java.awt.event.*;

import javax.swing.*;

import java.awt.*;

public class BackgroundImage extends JFrame

{

JScrollPane scrollPane;

ImageIcon icon;

Image image;

public BackgroundImage()

{

icon = new

ImageIcon("bgpanel.jpg");

JPanel panel = new JPanel()

{

protected void paintComponent(Graphics g)

{

// Dispaly image at at full size

g.drawImage(icon.getImage(), 0, 0, null);

// Scale image to size of component

// Dimension d = getSize();

// g.drawImage(icon.getImage(), 0, 0,

d.width, d.height, null);

// Fix the image position in the scroll

pane

// Point p =

scrollPane.getViewport().getViewPosition();

// g.drawImage(icon.getImage(), p.x, p.y,

null);

super.paintComponent(g);

}

};

panel.setOpaque( false );

panel.setPreferredSize( new Dimension(400,

400) );

scrollPane = new JScrollPane( panel );

getContentPane().add( scrollPane );

JButton button = new JButton(

"Hello" );

panel.add( button );

}

public static void main(String [] args)

{

BackgroundImage frame = new

BackgroundImage();

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

frame.setSize(300, 300);

frame.setLocationRelativeTo( null );

frame.setVisible(true);

}

}

总结

以上是生活随笔为你收集整理的java将图片铺满panel_如何让添加的背景图片铺满整个JFrame?的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。