guruk wrote: > thanks.... yes.. nearly at the same time u wrote me i found the > same... > its obm = Bitmap.createBitmap(ob.getWidth(), ob.getHeight(), > ob.getConfig()); > > but what is different here since 1.5 because there it worked?
ob.getConfig() is returning null, presumably. You are failing on a NullPointerException, and neither of the other two parameters can possibly be null. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 1.0 Available! -- 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

