For example, to create a reflection of an image like it was described in the following article
http://www.everydayflash.com/blog/index.php/tutorials/reflection-effect/ I had tried Canvas canvas = new Canvas(icon2); canvas.save(); canvas.rotate(180, icon.getWidth()/2, icon.getHeight()/2); canvas.scale(-1, 1); canvas.drawBitmap(icon, 0, 0, null); canvas.restore(); That didnt appear to work at all, can someone know the answer help me out? I had also tried using the Camera class and couldnt get that to work either. There are very little documentations on this that I can find. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

