溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

android webView截圖的4種方法

發(fā)布時間:2020-10-20 16:53:40 來源:腳本之家 閱讀:294 作者:PalmerYang 欄目:移動開發(fā)

android 在webView里面截圖大概有四種方式,具體內(nèi)容如下

1.獲取到DecorView然后將DecorView轉(zhuǎn)換成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來實現(xiàn)該功能.(該方法被廢棄了因此不建議使用)

 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來實現(xiàn).(該方法被廢棄了因此不建議使用)

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來實現(xiàn)(建議使用).

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進行截長圖時,默認是截取可是區(qū)域內(nèi)的內(nèi)容.因此需要在支撐窗體內(nèi)容之前加上如下方法.

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  WebView.enableSlowWholeDocumentDraw();
   }
 setContentView(R.layout.activity_webview);

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI