• 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

display image in mouse position

 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can I display a image where ever I click the mouse on the screen. pls help.

If I give drawImage inside for loop and give the mouse cordinate to drawimage method it shows the image only once.

Please suggest me to get multiple time.
 
Ranch Hand
Posts: 2412
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Nirmal JeyaChandra:
How can I display a image where ever I click the mouse on the screen. pls help.

If I give drawImage inside for loop and give the mouse cordinate to drawimage method it shows the image only once.

Please suggest me to get multiple time.



One way to do it would be to maintain an ArrayList of Point objects that gets added to each time you click the mouse. Then in the paint method, you could simply iterate through the ArrayList and draw the image at each point.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic