WebView的截屏主要有两种实现方式:
方式1:
bitmap = webView.getDrawingCache();
但是,webView必须要mWebView.setDrawingCacheEnabled(true);
此方式只能截取屏幕显示的内容
方式2:
Picture snapShot = webView.capturePicture();
bitmap = Bitmap.createBitmap(snapShot.getWidth(),snapShot.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
snapShot.draw(canvas);
此方式可以将webview所有内容都进行截取。
WebView的截屏实现
时间: 2024-10-12 08:22:39