Ted熊伟

Results 2 comments of Ted熊伟

@zhaozeyx @AldenLei 应该不是图片压缩的原因,仔细检查一下有问题的图片,如果没错的话,是webp格式的,后缀名无法判断图片格式,要通过代码检查。 ` public static boolean isWebPImg(String imgPath) { BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeFile(imgPath, options); String mimeType = options.outMimeType; if (TextUtils.isEmpty(mimeType)) return false; return mimeType.toLowerCase().contains("webp");...