Android Bitmap、InputStream、Drawable、byte[]、Base64之间的转换关系

Android Image涉及相关转换(Bitmap、InputStream、Drawable、byte[]、Base64)。

复制代码
public class Utils {


    //将Bitmap转换成InputStream 压缩率 100表示不压缩、10表示压缩90%
    public InputStream bitmapInputStream(Bitmap bm, int quality) {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        bm.compress(Bitmap.CompressFormat.PNG, quality, baos);
        InputStream is = new ByteArrayInputStream(baos.toByteArray());
        return is;
    }


    // 将InputStream转换成Bitmap
    public Bitmap inputStreamBitmap(InputStream is) {
        return BitmapFactory.decodeStream(is);

    }

    // Drawable转换成InputStream
    public InputStream drawableInputStream(Drawable d) {
        Bitmap bitmap = drawableBitmap(d);
        return bitmapInputStream(bitmap, 100);
    }

    // InputStream转换成Drawable
    public Drawable inputStreamDrawable(InputStream is) {
        Bitmap bitmap = inputStreamBitmap(is);
        return bitmapDrawable(bitmap);
    }

    // Drawable转换成byte[]
    public byte[] drawableBytes(Drawable d) {
        Bitmap bitmap = drawableBitmap(d);
        return bitmapBytes(bitmap);
    }

    // byte[]转换成Drawable
    public Drawable bytesDrawable(byte[] b) {
        Bitmap bitmap = bytesBitmap(b);
        return bitmapDrawable(bitmap);

    }

    // Bitmap转换成byte[]
    public byte[] bitmapBytes(Bitmap bm) {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
        return baos.toByteArray();
    }

    // byte[]转换成Bitmap
    public Bitmap bytesBitmap(byte[] b) {
        if (b.length != 0) {
            return BitmapFactory.decodeByteArray(b, 0, b.length);
        }
        return null;
    }

    // 将byte[]转换成InputStream
    public InputStream byteInputStream(byte[] b) {
        return new ByteArrayInputStream(b);
    }

    // 将InputStream转换成byte[]
    public byte[] inputStreamBytes(InputStream is) {
        String str = "";
        byte[] readByte = new byte[1024];
        int readCount = -1;
        try {
            while ((readCount = is.read(readByte, 0, 1024)) != -1) {
                str += new String(readByte).trim();
            }
            return str.getBytes();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    // Drawable转换成Bitmap
    public Bitmap drawableBitmap(Drawable drawable) {
        Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),
                drawable.getIntrinsicHeight(), drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565);
        Canvas canvas = new Canvas(bitmap);
        drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
        drawable.draw(canvas);
        return bitmap;
    }

    // Bitmap转换成Drawable
    public Drawable bitmapDrawable(Bitmap bitmap) {
        BitmapDrawable bd = new BitmapDrawable(bitmap);
        Drawable d = (Drawable) bd;
        return d;
    }

    //将Bitmap转换成Base64
    public String getImageStr(Bitmap bit) {
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        bit.compress(Bitmap.CompressFormat.JPEG, 100, bos);//参数100表示不压缩104byte[] bytes=bos.toByteArray();
        return Base64.encodeToString(bos.toByteArray(), Base64.DEFAULT);
    }

    //将Base64转换成bitmap
    public Bitmap getImage(String str) {
        byte[] bytes;
        bytes = Base64.decode(str, 0);
        return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
    }

}
相关推荐
BINGCHN14 分钟前
NSSCTF每日一练 SWPUCTF2021 include--web
android·前端·android studio
fundroid22 分钟前
Androidify:谷歌官方 AI + Android 开源示例应用
android·人工智能·开源
4z331 小时前
Android15 Framework(2):应用进程的孵化器 Zygote 进程解析
android·源码阅读
00后程序员张2 小时前
iOS 抓不到包怎么办?从 HTTPS 解密、QUIC 排查到 TCP 数据流分析的完整解决方案
android·tcp/ip·ios·小程序·https·uni-app·iphone
李斯维3 小时前
布局性能优化利器:ViewStub 极简指南
android·性能优化
循环不息优化不止4 小时前
Ktor Pipeline 机制深度解析
android
q***56384 小时前
Springboot3学习(5、Druid使用及配置)
android·学习
q***64974 小时前
SpringSecurity踢出指定用户
android·前端·后端
q***76664 小时前
SpringSecurity 实现token 认证
android·前端·后端
Chejdj5 小时前
ViewModel#onCleared的实现原理
android·源码阅读