时间:2021-05-20
android 在webView里面截图大概有四种方式,具体内容如下
1.获取到DecorView然后将DecorView转换成bitmap然后写入到文件里面.
View view = getWindow().getDecorView(); Bitmap bitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(), Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); view.draw(canvas); Log.d(TAG,"bitmap--"+bitmap); try { String fileName = Environment.getExternalStorageDirectory().getPath()+"/webview_jietu.jpg"; FileOutputStream fos = new FileOutputStream(fileName); //压缩bitmap到输出流中 bitmap.compress(Bitmap.CompressFormat.JPEG, 70, fos); fos.close(); Toast.makeText(WebviewFromGetDecorView.this, "截屏成功", Toast.LENGTH_LONG).show(); } catch (Exception e) { Log.e(TAG, e.getMessage()); }finally { if(bitmap!=null) { bitmap.recycle(); }}2.使用webViewpicture来实现该功能.(该方法被废弃了因此不建议使用)
Picture picture = webView.capturePicture(); int width = picture.getWidth(); int height = picture.getHeight(); if (width > 0 && height > 0) { Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); picture.draw(canvas); try { String fileName = Environment.getExternalStorageDirectory().getPath()+"/webview_jietu.jpg"; FileOutputStream fos = new FileOutputStream(fileName); //压缩bitmap到输出流中 bitmap.compress(Bitmap.CompressFormat.JPEG, 70, fos); fos.close(); Toast.makeText(WebviewFromCapture.this, "截屏成功", Toast.LENGTH_LONG).show(); bitmap.recycle(); } catch (Exception e) { Log.e(TAG, e.getMessage()); }}3.使用webViewDraw来实现.(该方法被废弃了因此不建议使用)
float scale = webView.getScale(); int webViewHeight = (int) (webView.getContentHeight()*scale+0.5); Bitmap bitmap = Bitmap.createBitmap(webView.getWidth(),webViewHeight, Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); webView.draw(canvas); try { String fileName = Environment.getExternalStorageDirectory().getPath()+"/webview_jietu.jpg"; FileOutputStream fos = new FileOutputStream(fileName); //压缩bitmap到输出流中 bitmap.compress(Bitmap.CompressFormat.JPEG, 70, fos); fos.close(); Toast.makeText(WebviewFromDraw.this, "截屏成功", Toast.LENGTH_LONG).show(); bitmap.recycle(); } catch (Exception e) { Log.e(TAG, e.getMessage());}4.使用webViewDrawCache来实现(建议使用).
Bitmap bitmap = webView.getDrawingCache(); try { String fileName = Environment.getExternalStorageDirectory().getPath() + "/webview_jietu.jpg"; FileOutputStream fos = new FileOutputStream(fileName); //压缩bitmap到输出流中 bitmap.compress(Bitmap.CompressFormat.JPEG, 70, fos); bitmap.recycle(); fos.close(); Toast.makeText(WebviewFromDrawCache.this, "截屏成功", Toast.LENGTH_LONG).show();} catch (Exception e) { Log.e(TAG, e.getMessage()); } finally { bitmap.recycle();}注意:
在android5.0及以上版本使用webView进行截长图时,默认是截取可是区域内的内容.因此需要在支撑窗体内容之前加上如下方法.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { WebView.enableSlowWholeDocumentDraw(); } setContentView(R.layout.activity_webview);以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
//第一种方法-(void)webViewDidFinishLoad:(UIWebView*)webView{CGFloatwebViewHeight=[web
第一种方法的步骤:1.在要activity中实例化webview组件:webviewwebview=newwebview(this);2.调用webview的l
本文实例讲述了Android编程使用WebView实现与Javascript交互的方法。分享给大家供大家参考,具体如下:Android中可以使用WebView加
本文实例讲述了Android开发实现webview中img标签加载本地图片的方法。分享给大家供大家参考,具体如下:在网上查了很多教程,感觉很麻烦,各种方法,最后
AndroidNaive与WebView的互相调用详解Android的Naive程序是可以嵌套WebView,并且可以做到与WebView的交互,一般来说有两种