我使用webView显示内容并将其作为图像捕获,并使用共享选项发送 但是我需要在不使用webview的情况下将html代码转换为图像 请帮帮我 提前致谢。
答案 0 :(得分:5)
我使用webView完成了这项工作。
webview = (WebView) findViewById(R.id.webView1);
WebSettings settings = webview.getSettings();
settings.setBuiltInZoomControls(true);
settings.setUseWideViewPort(false);
settings.setJavaScriptEnabled(true);
settings.setSupportMultipleWindows(false);
settings.setLoadsImagesAutomatically(true);
settings.setLightTouchEnabled(true);
settings.setDomStorageEnabled(true);
settings.setLoadWithOverviewMode(true);
WebView webview = (WebView) findViewById(R.id.webview);
WebView.enableSlowWholeDocumentDraw();
String RESULTDATA = "<html><body><h1>It's working</h1></body></html>";
if (!RESULTDATA.equals(null)) {
Log.e("info", RESULTDATA);
webview.loadData(RESULTDATA, "text/html", null);
}
circleButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
shareResultAsImage(webview);
}
});
shareResultAsImage(WebView) 方法需要定义。
private void shareResultAsImage(WebView webView) {
Bitmap bitmap = getBitmapOfWebView(webView);
String pathofBmp = MediaStore.Images.Media.insertImage(getContentResolver(), bitmap, "data", null);
Uri bmpUri = Uri.parse(pathofBmp);
final Intent emailIntent1 = new Intent(android.content.Intent.ACTION_SEND);
emailIntent1.setType("image/png");
emailIntent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
emailIntent1.putExtra(Intent.EXTRA_STREAM, bmpUri);
startActivity(emailIntent1);
}
private Bitmap getBitmapOfWebView(final WebView webView) {
Picture picture = webView.capturePicture();
Bitmap bitmap = Bitmap.createBitmap(picture.getWidth(), picture.getHeight(), Bitmap.Config.RGB_565);
Canvas canvas = new Canvas(bitmap);
canvas.drawColor(Color.WHITE);
picture.draw(canvas);
return bitmap;
}
答案 1 :(得分:0)
可以有许多可能的解决方案。您可以通过显示全屏Web视图并以编程方式捕获设备的屏幕截图并通过后台服务发送数据来实现它。
通过程序捕获屏幕截图;你可以使用以下链接:
http://amitandroid.blogspot.in/2013/02/android-taking-screen-shots-through-code.html
答案 2 :(得分:0)
查看此SO答案https://stackoverflow.com/a/64853392/4944007。它中使用的库在从HTML生成位图方面确实起到了很大的作用