Results 1 to 1 of 1
Thread: Resizing icons with scroll wheel
- 01-26-2013, 04:16 AM #1
Member
- Join Date
- Jan 2013
- Posts
- 4
- Rep Power
- 0
Resizing icons with scroll wheel
I am trying to allow a user to resize an icon using the scroll wheel, here is what I have so far but it is not working and I have no idea why.
Here is what I have:
try{
BufferedImage myPicture = ImageIO.read(new File("/Users/david/Desktop/AlienChar01.png"));
counter=1;
myPicture = resizeIcon(myPicture);
System.out.println(myPicture.getWidth());
counter=2;
ImageIcon icon = new ImageIcon(myPicture);
counter=3;
player.setIcon(icon);
counter=4;
} catch (Exception e){System.out.println(counter);}
the resizeIcon class I called is as follows:
public BufferedImage resizeIcon(BufferedImage img){
resizeCount+=1;
BufferedImage newPic = new BufferedImage(
resizeCount*img.getWidth(),
resizeCount*img.getHeight(),
BufferedImage.TYPE_INT_ARGB);
return newPic;
}
Any help is greatly appreciated, thanks!
EDIT: The counter you see is just for my debugging purposes.
Similar Threads
-
Roulette Wheel Quick Help
By jcharhyde in forum New To JavaReplies: 6Last Post: 10-31-2012, 12:29 AM -
All Menu Icons
By java software in forum Java SoftwareReplies: 0Last Post: 12-13-2011, 05:39 PM -
How To Make Wheel Look Like It's Moving?
By kraigballa in forum Java AppletsReplies: 4Last Post: 10-14-2011, 05:50 AM -
is there anyone how can help me with image icons please?
By xbox_nutter in forum New To JavaReplies: 4Last Post: 03-27-2009, 10:26 AM -
I am trying to create a wheel that has 5 spokes...
By fernando in forum Java 2DReplies: 1Last Post: 08-07-2007, 06:59 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks