Skip to content

Instantly share code, notes, and snippets.

@qhm123
Created May 23, 2012 02:34
Show Gist options
  • Save qhm123/2772933 to your computer and use it in GitHub Desktop.
Save qhm123/2772933 to your computer and use it in GitHub Desktop.
WebView截图
Picture picture = webView.capturePicture();
int weight = picture.getWidth();
int height = picture.getHeight();
if (weight > 0 && height > 0) {
Bitmap bitmap = Bitmap.createBitmap(weight, height,
Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
picture.draw(canvas);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment