开发者

How to load an image stored in a byte array to WebView?

开发者 https://www.devze.com 2023-01-31 08:04 出处:网络
everyone! I have compressed lots of pictures to a \"pictures.zip\" file. I want to load one of these pictures to a WebView like this:

everyone! I have compressed lots of pictures to a "pictures.zip" file. I want to load one of these pictures to a WebView like this:

WebView wv = (WebView)findViewById(R.id.WebView01);
wv.loadDataWithBaseURL(null,"<img src=\"abc.jpg\">", "text/html", "UTF-8", null);

Here,"abc.jpg" is a p开发者_StackOverflowicture that has been compressed to pictures.zip file.

  1. I just want to decompress the picture from the zip file and get the picture's byte stream, and then load the image to the WebView from the byte stream.

  2. I don't want to decompress the picture from the zip file and then save it to sdcard and then load it.

  3. Moreover, I don't want to encode the pitcture's byte to a base64 and then load the image to the WebView either, because these two ways will be very slow.


As far as I know, there is no way to have all three of these requirements. Base64 encoding it and loading it into the image tag directly is probably your best bet if you don't want to write it to storage, although you can still write it to internal storage and show it in a webview.

private static final String HTML_FORMAT = "<img src=\"data:image/jpeg;base64,%1$s\" />";

private static void openJpeg(WebView web, byte[] image)
{
    String b64Image = Base64.encode(image, Base64.DEFAULT);
    String html = String.format(HTML_FORMAT, b64Image);
    web.loadData(html, "text/html", "utf-8");
}


I recommend using embeddable HTTP listener within your application where listen to specific port (for instance 8001), then in your HTML Page reference images to your listener. For example looking for Test.png would be something like:

http://localhost:8001/Test.png

This request will end up in your listener where you can look into your zip file or database and then return byte stream to HTTP Response stream!

I really recommend you to take a look at NanoHTTPD (http://elonen.iki.fi/code/nanohttpd/) and try to implement custom serve method for your goal.

I hope this helps :-)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号