Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 picture 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.

like image 273
Chao Wei Avatar asked Dec 21 '10 01:12

Chao Wei


People also ask

How do I display an image in a byte array?

Create a ByteArrayInputStream object by passing the byte array (that is to be converted) to its constructor. Read the image using the read() method of the ImageIO class (by passing the ByteArrayInputStream objects to it as a parameter). Finally, Write the image to using the write() method of the ImageIo class.


2 Answers

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");
}
like image 62
jakebasile Avatar answered Nov 16 '22 00:11

jakebasile


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 :-)

like image 44
Qorbani Avatar answered Nov 15 '22 23:11

Qorbani