如何将图像转换为Base64字符串?


143

将图像(最大200 KB)转换为Base64字符串的代码是什么?

我需要知道如何使用Android,因为我必须添加功能以将图像上传到我的主应用程序中的远程服务器,并将它们作为字符串放入数据库的一行中。

我正在Google和Stack Overflow中进行搜索,但是我找不到我可以负担的简单示例,也找到了一些示例,但是它们并不是要转换为String。然后,我需要转换为字符串以通过JSON上传到我的远程服务器。

Answers:


330

您可以使用Base64 Android类:

String encodedImage = Base64.encodeToString(byteArrayImage, Base64.DEFAULT);

但是,您必须将图像转换为字节数组。这是一个例子:

Bitmap bm = BitmapFactory.decodeFile("/path/to/image.jpg");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.JPEG, 100, baos); // bm is the bitmap object
byte[] b = baos.toByteArray();

*更新*

如果您使用的是较旧的SDK库(因为您希望它在具有旧版OS的手机上运行),则不会打包Base64类(因为它只是在API级别8 AKA 2.2版中发布的)。

请查看本文以找到解决方法:

如何base64编码解码Android


好的,他们可以用PHP + JSON将String(encondedImage)放入远程数据库列中?夹心类型必须是数据库的列?VARCHAR?
NullPointerException

好吧,使用VARCHAR,您需要指定大小,因此TEXT可能会更好。图片可以是任意大小范围...
xil3 2011年

嗨,我正在测试它,但它给我Base64错误。它不能欺骗班级。我通过Ctrl + shift + O来获取导入,但是没有获取到...。如何解决呢?
NullPointerException

4
对我来说,替换后正在工作:字符串encodingImage = Base64.encode(byteArrayImage,Base64.DEFAULT); 通过:字符串encodingImage = Base64.encodeToString(byteArrayImage,Base64.DEFAULT);
PakitoV'7

3
有人意识到这种方法对文件无意义的重新压缩吗?为什么这么反对?Chandra Sekhar的答案是最有效的。
ElYeante

103

除了使用之外Bitmap,您还可以通过一些琐碎的操作来做到这一点InputStream。好吧,我不确定,但是我认为这有点有效。

InputStream inputStream = new FileInputStream(fileName); // You can get an inputStream using any I/O API
byte[] bytes;
byte[] buffer = new byte[8192];
int bytesRead;
ByteArrayOutputStream output = new ByteArrayOutputStream();

try {
    while ((bytesRead = inputStream.read(buffer)) != -1) {
        output.write(buffer, 0, bytesRead);
    }
}
catch (IOException e) {
    e.printStackTrace();
}

bytes = output.toByteArray();
String encodedString = Base64.encodeToString(bytes, Base64.DEFAULT);

3
当然,这更有效。只是将文件转换为其base64表示形式,并避免了图像的绝对无意义的重新压缩。
ElYeante

是fileName此处是文件的路径还是实际的文件名?请不要忘记给我加上标签:)谢谢。
Rakeeb Rajbhandari

2
@ user2247689显然,当您尝试访问文件时,必须提供文件的完整路径,包括文件名。如果文件位于源程序所在的路径中,则文件名就足够了。
Chandra Sekhar

2
问题是“ 8192”在这里表示什么,它是文件大小还是什么?
Devesh Khandelwal

1
此代码无法正常工作,浪费了我很多时间来补充问题。
Ramkesh Yadav

7

如果您需要基于JSON的Base64,请查看Jackson:它在底层(JsonParser,JsonGenerator)和数据绑定级别都对作为Base64的二进制数据进行读写支持。这样你就可以拥有POJO具有byte []属性的,自动处理编码/解码。

同样重要的是,它也非常有效。


1
对我来说太难了,我的技能很低,我在google上检查了它,找不到简单的示例...也许如果您能给我像xil3这样的代码示例,我会理解的
NullPointerException

5
// Put the image file path into this method
public static String getFileToByte(String filePath){
    Bitmap bmp = null;
    ByteArrayOutputStream bos = null;
    byte[] bt = null;
    String encodeString = null;
    try{
        bmp = BitmapFactory.decodeFile(filePath);
        bos = new ByteArrayOutputStream();
        bmp.compress(Bitmap.CompressFormat.JPEG, 100, bos);
        bt = bos.toByteArray();
        encodeString = Base64.encodeToString(bt, Base64.DEFAULT);
    }
    catch (Exception e){
      e.printStackTrace();
    }
    return encodeString;
}

3

该代码在我的项目中运行完美:

profile_image.buildDrawingCache();
Bitmap bmap = profile_image.getDrawingCache();
String encodedImageData = getEncoded64ImageStringFromBitmap(bmap);


public String getEncoded64ImageStringFromBitmap(Bitmap bitmap) {
    ByteArrayOutputStream stream = new ByteArrayOutputStream();
    bitmap.compress(CompressFormat.JPEG, 70, stream);
    byte[] byteFormat = stream.toByteArray();

    // Get the Base64 string
    String imgString = Base64.encodeToString(byteFormat, Base64.NO_WRAP);

    return imgString;
}

2

如果您是在Android上执行此操作,那么以下是从React Native代码库复制的帮助程序:

import java.io.ByteArrayOutputStream;
import java.io.Closeable;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;

import android.util.Base64;
import android.util.Base64OutputStream;
import android.util.Log;

// You probably don't want to do this with large files
// (will allocate a large string and can cause an OOM crash).
private String readFileAsBase64String(String path) {
  try {
    InputStream is = new FileInputStream(path);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    Base64OutputStream b64os = new Base64OutputStream(baos, Base64.DEFAULT);
    byte[] buffer = new byte[8192];
    int bytesRead;
    try {
      while ((bytesRead = is.read(buffer)) > -1) {
        b64os.write(buffer, 0, bytesRead);
      }
      return baos.toString();
    } catch (IOException e) {
      Log.e(TAG, "Cannot read file " + path, e);
      // Or throw if you prefer
      return "";
    } finally {
      closeQuietly(is);
      closeQuietly(b64os); // This also closes baos
    }
  } catch (FileNotFoundException e) {
    Log.e(TAG, "File not found " + path, e);
    // Or throw if you prefer
    return "";
  }
}

private static void closeQuietly(Closeable closeable) {
  try {
    closeable.close();
  } catch (IOException e) {
  }
}

2
(将分配大字符串并可能导致OOM崩溃)那么在这种情况下,解决方案是什么?
Ibrahim Disouki

1

这是Kotlin中的编码和解码代码:

 fun encode(imageUri: Uri): String {
    val input = activity.getContentResolver().openInputStream(imageUri)
    val image = BitmapFactory.decodeStream(input , null, null)

    // Encode image to base64 string
    val baos = ByteArrayOutputStream()
    image.compress(Bitmap.CompressFormat.JPEG, 100, baos)
    var imageBytes = baos.toByteArray()
    val imageString = Base64.encodeToString(imageBytes, Base64.DEFAULT)
    return imageString
}

fun decode(imageString: String) {

    // Decode base64 string to image
    val imageBytes = Base64.decode(imageString, Base64.DEFAULT)
    val decodedImage = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.size)

    imageview.setImageBitmap(decodedImage)
}

0
byte[] decodedString = Base64.decode(result.getBytes(), Base64.DEFAULT);

6
尽管此代码可以回答问题,但提供有关此代码为何和/或如何回答问题的其他上下文,可以提高其长期价值。
唐老鸭

一个解释将是有条理的。
Peter Mortensen

0

以下是可以帮助您的伪代码:

public  String getBase64FromFile(String path)
{
    Bitmap bmp = null;
    ByteArrayOutputStream baos = null;
    byte[] baat = null;
    String encodeString = null;
    try
    {
        bmp = BitmapFactory.decodeFile(path);
        baos = new ByteArrayOutputStream();
        bmp.compress(Bitmap.CompressFormat.JPEG, 100, baos);
        baat = baos.toByteArray();
        encodeString = Base64.encodeToString(baat, Base64.DEFAULT);
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }

   return encodeString;
}

0

在Android中将图像转换为Base64字符串:

ByteArrayOutputStream baos = new ByteArrayOutputStream();
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.yourimage);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] imageBytes = baos.toByteArray();
String imageString = Base64.encodeToString(imageBytes, Base64.DEFAULT);

0

这是用于图像编码和图像解码的代码。

在XML文件中

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="yyuyuyuuyuyuyu"
    android:id="@+id/tv5"
/>

在Java文件中:

TextView textView5;
Bitmap bitmap;

textView5 = (TextView) findViewById(R.id.tv5);

bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.logo);

new AsyncTask<Void, Void, String>() {
    @Override
    protected String doInBackground(Void... voids) {
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.JPEG, 70, stream);
        byte[] byteFormat = stream.toByteArray();

        // Get the Base64 string
        String imgString = Base64.encodeToString(byteFormat, Base64.NO_WRAP);

        return imgString;
    }

    @Override
    protected void onPostExecute(String s) {
       textView5.setText(s);
    }
}.execute();

会实际编译吗?你有遗漏什么吗?
Peter Mortensen

0

对于那些寻求将图像文件转换为Base64字符串而不进行压缩或先将其转换为位图的有效方法的用户,可以将文件编码为base64

val base64EncodedImage = FileInputStream(imageItem.localSrc).use {inputStream - >
    ByteArrayOutputStream().use {outputStream - >
            Base64OutputStream(outputStream, Base64.DEFAULT).use {
                base64FilterStream - >
                    inputStream.copyTo(base64FilterStream)
                base64FilterStream.flush()
                outputStream.toString()
            }
      }
}

希望这可以帮助!


-1

使用此代码:

byte[] decodedString = Base64.decode(Base64String.getBytes(), Base64.DEFAULT);

Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.