如何以编程方式截取webview的屏幕截图,捕获整页?

时间:2012-03-16 23:58:24

标签: android webview screenshot

我认为标题几乎涵盖了它,但我的活动中有一个webview。我已经在网页浏览中加载了一个网址,我想整整一页的截图(视口中的内容以及“在屏幕下方”的内容)。

我有用于快照视口的代码,我知道这可以在iOS中通过在快照之前放大webview来完成。我试图在这里使用相同的技术:

    WebView browserView = (WebView) findViewById(R.id.browserView);

    //Resize the webview to the height of the webpage
    int pageHeight = browserView.getContentHeight();
    LayoutParams browserParams = browserView.getLayoutParams();
    browserView.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, pageHeight));

    //Capture the webview as a bitmap
    browserView.setDrawingCacheEnabled(true);
    Bitmap bitmap = Bitmap.createBitmap(browserView.getDrawingCache());
    browserView.setDrawingCacheEnabled(false);

    //Create the filename to use
    String randomFilenamepart = String.valueOf(new SecureRandom().nextInt(1000000));
    String filename = Environment.getExternalStorageDirectory().toString() + "/Screenshot_" + randomFilenamepart + ".jpg";
    File imageFile = new File(filename);
    //Stream the file out to external storage as a JPEG
    OutputStream fout = null;
    try {
        fout = new FileOutputStream(imageFile);
        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fout);
        fout.flush();
        fout.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        browserView.setLayoutParams(browserParams);
    }

但我仍然只捕捉视口。由于页面太大,忽略内存不足等问题,是否有人知道我做错了什么或者如何将视频包含在视口之外?

4 个答案:

答案 0 :(得分:25)

试试这个

     import java.io.FileOutputStream;
     import android.app.Activity;
     import android.graphics.Bitmap;
     import android.graphics.Canvas;
     import android.graphics.Picture;
     import android.os.Bundle;
     import android.view.Menu;
     import android.webkit.WebView;
     import android.webkit.WebViewClient;

      public class MainActivity extends Activity {

WebView w ;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    w = new WebView(this);
    w.setWebViewClient(new WebViewClient()
    {
            public void onPageFinished(WebView view, String url)
            {
                    Picture picture = view.capturePicture();
                    Bitmap  b = Bitmap.createBitmap( picture.getWidth(),
                    picture.getHeight(), Bitmap.Config.ARGB_8888);
                    Canvas c = new Canvas( b );

                    picture.draw( c );
                    FileOutputStream fos = null;
                    try {

                        fos = new FileOutputStream( "mnt/sdcard/yahoo.jpg" );
                            if ( fos != null )
                            {
                                b.compress(Bitmap.CompressFormat.JPEG, 100, fos);

                                fos.close();
                            }
                        }
                   catch( Exception e )
                   {

                   }
          }
      });

    setContentView(w);
    w.loadUrl("http://search.yahoo.com/search?p=android");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

}

在AndroidManifest.xml文件中添加INTERNET PERMISSION和WRITE_EXTERNAL_STORAGE。

如果应用程序在Marshmallow或以上运行,则需要在运行时询问文件写入权限。

答案 1 :(得分:2)

@avinash thakur代码实际上有效,你只是忘记提及添加    Android Manifest文件中的<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>,否则,android将不允许您的流在设备上写入数据/文件。

欢呼声。

答案 2 :(得分:0)

https://github.com/peter1492/LongScreenshot看一下是否有用。从一些资源和库中获取了代码,并设法将其上传到GitHub以供使用。如果有用,将使其保持发布状态,否则将其删除。

答案 3 :(得分:0)

webview.capturePicture()已过时,使用下面的方法可以做到:

Bitmap bitmap = Bitmap.createBitmap(webview.getWidth(), webview.getHeight(), Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
webview.draw(canvas);
return bitmap;