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

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 に答える