23

我有一张通过 JSON 字符串发送给我的图像。我想将该字符串转换为我的 android 应用程序中的图像,然后显示该图像。

JSON 字符串如下所示:

"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVI..."

注意:我用...截断了字符串

我有一个(我认为)将字符串转换为图像的函数。我这样做对吗?

public Bitmap ConvertToImage(String image){
    try{
        InputStream stream = new ByteArrayInputStream(image.getBytes());
        Bitmap bitmap = BitmapFactory.decodeStream(stream);                 
        return bitmap;  
    }
    catch (Exception e) {
        return null;            
    }
}

然后我尝试像这样在我的android活动上显示它

String image = jsonObject.getString("barcode_img");         
Bitmap myBitmap = this.ConvertToImage(image);
ImageView cimg = (ImageView)findViewById(R.id.imageView1);

//Now try setting dynamic image
cimg.setImageBitmap(myBitmap);

但是,当我这样做时,什么都没有出现。我在 logcat 中没有任何错误。我究竟做错了什么?

谢谢

4

3 回答 3

53

我担心你只需要解码 base64 字符串来获取图像字节,所以在你的

"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVI..."

字符串,您必须在 之后获取数据data:image\/png;base64,,因此您只获取图像字节然后对其进行解码:

String imageDataBytes = completeImageData.substring(completeImageData.indexOf(",")+1);

InputStream stream = new ByteArrayInputStream(Base64.decode(imageDataBytes.getBytes(), Base64.DEFAULT));

这是一个代码,因此您了解它是如何工作的,但是如果您收到一个 JSON 对象,它应该以正确的方式完成:

  • 将 JSON 字符串转换为 JSON 对象。
  • 提取data键下的字符串。
  • 确保以image/png您知道是 png 图像开头。
  • 确保包含base64字符串,这样您就知道必须解码数据。
  • 解码base64字符串后的数据以获取图像。
于 2013-07-06T19:53:30.477 回答
5
InputStream stream = new ByteArrayInputStream(image.getBytes());

应该改为

InputStream stream = new ByteArrayInputStream(Base64.decode(image.getBytes(), Base64.DEFAULT));

有关如何进行 Base64 解码的详细信息,请参阅http://developer.android.com/reference/android/util/Base64.html 。

免责声明:我没有检查语法,但这是你应该这样做的。

于 2013-07-06T19:42:56.507 回答
1

这是转换 Base64 编码的 inputStream 并将其写入磁盘的工作代码。我花了一些时间使它正常工作。所以我希望这可以帮助其他开发人员。

public boolean writeImageToDisk(FileItem item, File imageFile) {
    // clear error message
    errorMessage = null;
    FileOutputStream out = null;
    boolean ret = false;
    try {
        // write thumbnail to output folder
        out = createOutputStream(imageFile);

        // Copy input stream to output stream
        byte[] headerBytes = new byte[22];
        InputStream imageStream = item.getInputStream();
        imageStream.read(headerBytes);

        String header = new String(headerBytes);
        // System.out.println(header);

        byte[] b = new byte[4 * 1024];
        byte[] decoded;
        int read = 0;
        while ((read = imageStream.read(b)) != -1) {
            // System.out.println();
            if (Base64.isArrayByteBase64(b)) {
                decoded = Base64.decodeBase64(b);
                out.write(decoded);
            }
        }

        ret = true;
    } catch (IOException e) {
        StringWriter sw = new StringWriter();
        e.printStackTrace(new PrintWriter(sw));
        errorMessage = "error: " + sw;

    } finally {
        if (out != null) {
            try {
                out.close();
            } catch (Exception e) {
                StringWriter sw = new StringWriter();
                e.printStackTrace(new PrintWriter(sw));
                System.out.println("Cannot close outputStream after writing file to disk!" + sw.toString());
            }
        }

    }

    return ret;
}

/**
 * Helper method for the creation of a file output stream.
 * 
 * @param imageFolder
 *            : folder where images are to be saved.
 * @param id
 *            : id of spcefic image file.
 * @return FileOutputStream object prepared to store images.
 * @throws FileNotFoundException
 */
protected FileOutputStream createOutputStream(File imageFile) throws FileNotFoundException {

    imageFile.getParentFile().mkdirs();

    return new FileOutputStream(imageFile);
}
于 2014-09-21T19:47:50.827 回答