美文网首页
android 判断gif图片是否破损

android 判断gif图片是否破损

作者: magic_geng | 来源:发表于2020-02-19 16:28 被阅读0次


    今天我们测试出了一个小问题,在从相册选择图片时,没有判断此图片是否破损。在此记录一下判断方法:

    private static boolean imageBroken(String filePath) {   

    BitmapFactory.Options options = null;   

    if (options == null) options = new BitmapFactory.Options();    options.inJustDecodeBounds = true;    BitmapFactory.decodeFile(filePath, options);  

    if (options.mCancel || options.outWidth <= 0  || options.outHeight <= 0) { 

           //表示图片已损毁        return true; 

     }   

    if (filePath.endsWith(".gif")) {      

      //针对gif进行判断        try {         

       GifDrawable gifDrawable = new GifDrawable(new File(filePath));          

      if (gifDrawable != null) {               

    if (gifDrawable.getError() != GifError.NO_ERROR) {              

          return true;             

       }              

      gifDrawable.recycle();    

            } else {         

           return true;        

        }       

    } catch (IOException e) {        

        e.printStackTrace();      

          return true;      

      }   

    }   

    return false;

    }

    相关文章

      网友评论

          本文标题:android 判断gif图片是否破损

          本文链接:https://www.haomeiwen.com/subject/kibafhtx.html