AndroidQ(10)分区存储完美适配之图片压缩并保存

前言

本篇文章介绍的是利用uri进行图片压缩,加载本地压缩后的图片。

相关系列文章
  • AndroidQ(10)分区存储完美适配
  • AndroidQ(10)分区存储完美适配之图片(文件)上传
  • AndroidQ(10)分区存储完美适配之图片(文件)下载保存本地
  • AndroidQ(10)分区存储完美适配之图片压缩并保存

AndroidQ以上

/**
 * 图片压缩 (AndroidQ以上)
 *
 * @param context context
 * @param uri uri
 * @return 压缩后的图片uri
 */
private static Uri compressImageWithAndroidQ (Context context, Uri uri) {
    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
        return null;
    }
    if (uri == null) {
        return null;
    }
    Uri insertUri = null;
    ContentResolver resolver = context.getContentResolver();
    ByteArrayOutputStream bos = null;
    OutputStream os = null;
    try {
        //1.uri转换bitmap类型并旋转图片为正常图片
        Bitmap tagBitmap = uriToBitmap(context, uri);
            
        //2.压缩图片并写入byteArrayOutputStream流中
        bos = new ByteArrayOutputStream();
        if (tagBitmap != null) {
            tagBitmap.compress(Bitmap.CompressFormat.JPEG, 85, bos);
            tagBitmap.recycle();
        }
        //3.获取图片需要缓存的uri地址并copy到指定路径,主要通过MediaStore,请参照上篇文章
        insertUri = getImageFileCache(getCompressImageName(),getCompressImageType());
        if (insertUri == null) {
            return null;
        }
        os = resolver.openOutputStream(insertUri);
        if (os != null) {
            os.write(bos.toByteArray());
            os.flush();
        }
        //4.返回uri类型提供页面展示
        return insertUri;
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            if (os != null) {
                os.close();
            }
            if (bos != null) {
                bos.close();
            }
        } catch (IOException e) {
        }
    }
    return insertUri;
}

AndroidQ以下

/**
 * 图片压缩并缓存到指定路径下 (AndroidQ以下)
 *
 * @param context context
 * @param uri uri
 */
private static Uri compressImageNoAndroidQ (Context context, Uri uri) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
        return null;
    }
    if (uri == null) {
        return null;
    }
    ByteArrayOutputStream bos = null;
    FileOutputStream fos = null;
    Bitmap tagBitmap = null;
    Uri imageUri = null;
    try {
        //1.通过uri转成Bitmap类型并旋转图片
        tagBitmap = uriToBitmap(context, uri);
            
        //2.压缩图片
        bos = new ByteArrayOutputStream();
        if (tagBitmap != null) {
            tagBitmap.compress(Bitmap.CompressFormat.JPEG, 85, bos);
            tagBitmap.recycle();
        }
            
        //3.得到图片需要缓存的路径并copy到指定路径
        File targetFile = getImageFileCache(getCompressImageName());
        if (targetFile == null) {
            return null;
        }
        fos = new FileOutputStream(targetFile);
        fos.write(bos.toByteArray());
        fos.flush();
            
        //4.转换为uri类型提供页面加载
        imageUri = getImageFileToUri(context, targetFile);
        return imageUri;
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            if (fos != null) {
                fos.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return imageUri;
}
    
uri转bitmap
/**
 * uri转bitmap类型并旋转为正常图片
 *
 * @param context context
 * @param uri uri
 * @return 返回旋转后为正常图片的bitmap类型
 */
private static Bitmap uriToBitmap (Context context, Uri uri) {
    ParcelFileDescriptor parcelFileDescriptor = null;
    FileDescriptor fileDescriptor = null;
    ExifInterface exifInterface = null;
    Bitmap tagBitmap = null;
    try {
        parcelFileDescriptor = context.getContentResolver().openFileDescriptor(uri, "r");
            
        if (parcelFileDescriptor != null && parcelFileDescriptor.getFileDescriptor() != null) {
            fileDescriptor = parcelFileDescriptor.getFileDescriptor();
                
            //1.转换uri为bitmap类型
            tagBitmap = BitmapFactory.decodeFileDescriptor(fileDescriptor);
                
            //2.旋转图片
            if (Build.VERSION.SDK_INT >= VERSION_CODES.N) {
                exifInterface = new ExifInterface(fileDescriptor);
            }
            tagBitmap = rotatingImage(tagBitmap, exifInterface);
        }
        return tagBitmap;
    } catch (FileNotFoundException e) {
            e.printStackTrace();
    } catch (IOException e) {
            e.printStackTrace();
    } finally {
        try {
            if (parcelFileDescriptor != null) {
                parcelFileDescriptor.close();
            }
        } catch (IOException e) {
        }
    }
    return tagBitmap;
}
此处区分AndroidQ版本的作用:
  1. 获取图片缓存路径需要区分,AndroidQ以上通过uri,AndroidQ以下使用file.

  2. 使用过程中有可能会出现file转uri的情况,这里需要说明一下遇到的坑:

     如果当前file是存在的,file转uri是OK的;
    如果当前file不存在的,file转uri返回为空;
    所以AndroidQ创建路径时,需要file存在才能转换成功,转换成功后使用相同方法即可。
    
结束啦~~~~
大佬点个赞再走呗~

你可能感兴趣的:(AndroidQ(10)分区存储完美适配之图片压缩并保存)