Hi!
I need help on couple of issues .... Basically I want to capture
webpage from webview and get raster data of the bitmap.
To do so what I did is
WebView m_browser;
Picture picture = m_browser.capturePicture();
Bitmap b = Bitmap.createBitmap( picture.getWidth(),
picture.getHeight(), Bitmap.Config.ARGB_8888);
Canvas c = new Canvas( b );
picture.draw( c );
Issue 1: Out of memmory exception when web page is big for eg. http://times.com
What should I do to get this image? Is it possible to get image in
multiple bitmaps?
Issue 2: How can i get RGB data 24 bit data from ARGB_8888. I need to
get this 24 bit Raster data compress it with some compression and
process it...
Thanks in advance
--
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