Results 1 to 4 of 4
- 05-22-2012, 07:30 AM #1
Member
- Join Date
- May 2012
- Posts
- 15
- Rep Power
- 0
How can you get a buffered image to resize to fill a panel?
So for example you have a picture that is 20x20 pixels in its natural size. Your panel is 100x100 pixels. Resizing the panel is not an option because there is no guarantee the picture will always be 20x20.
Currently the way I am drawing the picture is:
Java Code:import java.awt.*; import java.awt.image.BufferedImage; import java.io.*; import javax.imageio.ImageIO; import javax.swing.JPanel; //@SuppressWarnings("serial") public class DisplayImage extends JPanel { BufferedImage image; public DisplayImage(String picPath) { File input = new File(picPath); image = ImageIO.read(input); } public DisplayImage(LayoutManager layout, String picPath) { this(picPath); setLayout(layout); setDoubleBuffered(true); setOpaque(true); updateUI(); } public void setImage(String picPath) { File input = new File(picPath); image = ImageIO.read(input); } public void paint(Graphics g) { g.drawImage(image, 0, 0, null); } }
- 05-22-2012, 07:40 AM #2
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,561
- Rep Power
- 11
Re: How can you get a buffered image to resize to fill a panel?
Isn't there a drawImage() that lets you specify the target size?
- 05-22-2012, 07:57 AM #3
Member
- Join Date
- May 2012
- Posts
- 15
- Rep Power
- 0
Re: How can you get a buffered image to resize to fill a panel?
Yeah there is, thanks that did the trick
- 05-22-2012, 08:32 AM #4
Similar Threads
-
Resize the popup panel
By Charles I in forum JavaServer Faces (JSF)Replies: 0Last Post: 01-27-2012, 07:02 AM -
Buffered Image and DataBuffer
By ErdyMurphy in forum Java 2DReplies: 1Last Post: 04-19-2011, 04:55 AM -
Volatile image vs buffered image
By trishtren in forum Java 2DReplies: 0Last Post: 04-17-2011, 11:31 PM -
Drawing onto a buffered image
By trishtren in forum Java 2DReplies: 3Last Post: 04-09-2011, 09:23 PM -
Rotating Buffered Image distorts image
By VortexSpin in forum Java 2DReplies: 1Last Post: 02-13-2011, 05:54 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks