recherche

Maison  >  Questions et réponses  >  le corps du texte

java - 非RGB图片不能上传?

黄舟黄舟2768 Il y a quelques jours527

répondre à tous(1)je répondrai

  • 阿神

    阿神2017-04-18 10:15:58

    Peut-être avez-vous besoin d'une imagerie commune pour vous aider.

    ImageInfo  imageInfo = Imaging.getImageInfo(file);
    imageInfo.getColorType();
    

    ============J'ai téléchargé une ancienne version et essayé RVB et CMJN=====================

    ImageInfo imageInfo = Sanselan.getImageInfo(new File("/*.jpg"));
        int type = imageInfo.getColorType();
        if(ImageInfo.COLOR_TYPE_RGB == type){
            System.out.println("RGB");
        }else if(ImageInfo.COLOR_TYPE_CMYK == type){
            System.out.println("CMYK");
        }else{
            System.out.println("other");
        }
    

    Le résultat est correct sans essayer plus de photos pour vérifier.

    répondre
    0
  • Annulerrépondre