2012-04-15 19 views

risposta

2
WebView webView = new WebView(this); 
//your image is in webview 

Picture picture = webView.capturePicture(); 
Canvas canvas = new Canvas(); 
picture.draw(canvas); 
Bitmap image = Bitmap.createBitmap(picture.getWidth(), 
picture.getHeight(),Config.ARGB_8888); 
canvas.drawBitmap(mimage, 0, 0, null); 
if(image != null) { 
    ByteArrayOutputStream mByteArrayOS = new 
    ByteArrayOutputStream(); 
    image.compress(Bitmap.CompressFormat.JPEG, 90, mByteArrayOS); 
    try { 
     fos = openFileOutput("image.jpg", MODE_WORLD_WRITEABLE); 
     fos.write(mByteArrayOS.toByteArray()); 
     fos.close(); 
    } catch (FileNotFoundException e) { 
     e.printStackTrace(); 
    } catch (IOException e) { 
     e.printStackTrace(); 
    } 
} 

provare il sopra per catturare un'immagine da WebView

+2

il codice che pubblichi è solo utilizzato per ottenere lo screenshot di WebView? –

+0

Voglio salvare ogni visualizzazione di immagini webview –

+1

Perché accettare la risposta se non è quello che hai chiesto? –

1

Poi si deve impostare un WebViewClient al WebView e sovrascrivere shouldOverrideUrlLoading e onLoadResource metodi. Permettetemi di fare un semplice esempio:

WebView yourWebView; // initialize it as always... 
// this is the funny part: 
yourWebView.setWebViewClient(yourWebClient); 

// somewhere on your code... 
WebViewClient yourWebClient = new WebViewClient(){ 
    // you tell the webclient you want to catch when a url is about to load 
    @Override 
    public boolean shouldOverrideUrlLoading(WebView view, String url){ 
     return true; 
    } 
    // here you execute an action when the URL you want is about to load 
    @Override 
    public void onLoadResource(WebView view, String url){ 
     if(url.equals("http://cnn.com")){ 
      // do whatever you want 
      //download the image from url and save it whereever you want 
     } 
    } 
} 
0

ho fatto utilizzato il codice di cui sopra ed è "funzionato", ma stava producendo immagini in bianco solo così dopo un paio di ore qui sono le mie correzioni, ora scrive sulla sd card esterna senza rischi deprecazione o problemi di percorso ...

public void captureWV() { 
    Picture picture = webview.capturePicture(); 
    Bitmap image = Bitmap.createBitmap(picture.getWidth(),picture.getHeight(), Config.ARGB_8888); 
    Canvas canvas = new Canvas(image); 
    picture.draw(canvas); 
    if (image != null) { 
     ByteArrayOutputStream mByteArrayOS = new ByteArrayOutputStream(); 
     image.compress(Bitmap.CompressFormat.JPEG, 90, mByteArrayOS); 
     try { 
      File sdCard = Environment.getExternalStorageDirectory(); 
      File dir = new File(sdCard.getAbsolutePath()); 
      File file = new File(dir, "filename.jpg"); 
      FileOutputStream fos = new FileOutputStream(file); 
      fos.write(mByteArrayOS.toByteArray()); 
      fos.close(); 
     } catch (FileNotFoundException e) { 
      e.printStackTrace(); 
     } catch (IOException e) { 
      e.printStackTrace(); 
     } 
    } 
} 

anche qui è l'inizio della mia MainActivity

public class MainActivity extends Activity { 
private static final String URL = "http://punto.gt"; //your website 
WebView webview; 
// your code here 
} 
+0

Lo screenshot eseguito è sempre nero. :( –

Problemi correlati