webview.capurebitmap

  1. MitchBu

    Android Question Trying to save picture from WebView.

    Here is the code I am trying to use. I never get any file. WVLetter is the WebView. Dim WVPic As Bitmap = WVLetter.CaptureBitmap Dim Out As OutputStream Out = File.OpenOutput(File.DirDefaultExternal, "TestHTMLPic.png", False) WVPic.WriteToStream(Out, 100, "PNG") Out.Close...
Top