Compressor
Compressor copied to clipboard
An easy to use image compress library for Android.
比如maxSize=1M,而不是指定maxwidth,maxHeight,一般服务端都跟我说,你图片压缩到不超过1M就行了,他不会跟我说,你压缩到最大分辨率为1080X1920
在pad端出现频率大 `MainScope().launch { val resultList = mutableListOf() paths.asFlow() .map { val compress = Compress.with(activity, File(it)) compress.setQuality(60).strategy(Strategies.compressor()).get(Dispatchers.IO).absolutePath }.flowOn(Dispatchers.IO) .catch { onPickListener?.onError() }.onCompletion { if (currentCoroutineContext().isActive) { onPickListener?.onSelected(resultList) } else { onPickListener?.onError()...