• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Graphics problem , how to approach ?

 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to repaint a component. Putting a image on a panel the applying graphics change in it (like drawing polygon, rectangle ..).


I would like to take the backup of the image passed to the class, and restore the graphics of the Component on need.

Problems I am facing :

1) Cannot make a clone for Image class.
2) Taking the backUp in BufferedImage using

3) Trying to restore the image with


seems not working.

NB : repaint() is always there.

Thanks in advance.
 
Bartender
Posts: 5167
11
Netbeans IDE Opera Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
drawImage(..) the original image to the Graphics context of the backup image.
 
Darryl Burke
Bartender
Posts: 5167
11
Netbeans IDE Opera Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tirthankar Mukherjee wrote:
3) Trying to restore the image with


You do realize that after that line executes, you have two references to the same BufferedImage, don't you?

Also, I can't see why a cast to Image would be needed. What's the Type of imageBackUp?
 
reply
    Bookmark Topic Watch Topic
  • New Topic