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);
    }

}
相关推荐
kk爱闹1 小时前
【挑战14天学完python和pytorch】- day01
android·pytorch·python
每次的天空3 小时前
Android-自定义View的实战学习总结
android·学习·kotlin·音视频
恋猫de小郭3 小时前
Flutter Widget Preview 功能已合并到 master,提前在体验毛坯的预览支持
android·flutter·ios
断剑重铸之日4 小时前
Android自定义相机开发(类似OCR扫描相机)
android
随心最为安4 小时前
Android Library Maven 发布完整流程指南
android
岁月玲珑4 小时前
【使用Android Studio调试手机app时候手机老掉线问题】
android·ide·android studio
还鮟8 小时前
CTF Web的数组巧用
android
小蜜蜂嗡嗡10 小时前
Android Studio flutter项目运行、打包时间太长
android·flutter·android studio
aqi0010 小时前
FFmpeg开发笔记(七十一)使用国产的QPlayer2实现双播放器观看视频
android·ffmpeg·音视频·流媒体
zhangphil12 小时前
Android理解onTrimMemory中ComponentCallbacks2的内存警戒水位线值
android