Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to reduce flicking in animation?

Answers were Sorted based on User's Feedback



How to reduce flicking in animation?..

Answer / m!r@

Double Buffering

sample code of java to reduce flinking :

public void update(Graphics g) {
Graphics offgc;
Image offscreen = null;
Dimension d = size();
offscreen = createImage(d.width, d.height);
offgc = offscreen.getGraphics();
offgc.setColor(getBackground());
offgc.fillRect(0, 0, d.width, d.height);
offgc.setColor(getForeground());
paint(offgc);
g.drawImage(offscreen, 0, 0, this);

}

Is This Answer Correct ?    1 Yes 0 No

How to reduce flicking in animation?..

Answer / tarush1988

double buffering

Is This Answer Correct ?    0 Yes 0 No

How to reduce flicking in animation?..

Answer / m. abhishek

By using offGra first draw whole animated image on a blank
Image and put this image directly on the screen

so at the time of animation the each movement of image can
draw
in other image and put this Image to screen.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is the significance of listiterator?

0 Answers  


How does multithreading take place on a computer with a single cpu in java programming?

0 Answers  


Is java still relevant?

0 Answers  


How to find the size of an array a)array.length() b)array.length c)array.size() d)array.size

6 Answers   Accenture,


Explain java code for recursive solution's base case?

0 Answers  


whats the purposr of using serialization?

6 Answers  


How can you make a class serializable in java?

0 Answers  


How do u pass data from one jsp to another jsp?

3 Answers   Fidelity,


Does constructor creates the object ?

0 Answers  


Does A Class Inherit The Constructors Of Its Superclass?

0 Answers   Wipro,


What do you mean by synchronized non access modifier?

0 Answers  


Difference between prefix and postfix forms of the ++operator?

3 Answers  


Categories