public static BitmapRegionDecoder createBitmapRegionDecoder(
ThreadPool.JobContext jc, byte[] bytes, int offset, int length,
boolean shareable) {
if (offset < 0 || length <= 0 || offset + length > bytes.length) {
throw new IllegalArgumentException(String.format(
"offset = %s, length = %s, bytes = %s",
offset, length, bytes.length));
}
try {
return BitmapRegionDecoder.newInstance(
bytes, offset, length, shareable);
} catch (Throwable t) {
Log.w(TAG, t);
return null;
}
}
DecodeUtils.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:medialibrary
作者:
评论列表
文章目录