web-dev-qa-db-ja.com

Javaでbase64文字列を画像に変換する

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でエラーが発生しません。何が間違っていますか?

ありがとう

18
user952342

私はあなたが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オブジェクトを受け取った場合はcorrectの方法で行う必要があります。

  • JSON文字列をJSONオブジェクトに変換します。
  • dataキーの下の文字列を抽出します。
  • 必ずimage/pngで始まるようにして、PNG画像であることを確認します。
  • base64文字列が含まれていることを確認してください。これにより、データをデコードする必要があることがわかります。
  • base64文字列の後のデータをデコードして、画像を取得します。
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 を参照してください。

免責事項:私は構文をチェックしていませんが、これはあなたがそれを行う方法です。

3
Wand Maker

以下は、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);
}
1
user2944582