欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java实现切图并且判断图片是不是纯色/彩色图片

程序员文章站 2024-02-17 23:56:40
整理文档,搜刮出一个java实现切图并且判断图片是否是纯色/彩色图片的代码,稍微整理精简一下做下分享。 首先上切图的代码 /** * 图片剪裁...

整理文档,搜刮出一个java实现切图并且判断图片是否是纯色/彩色图片的代码,稍微整理精简一下做下分享。

首先上切图的代码

/**
   * 图片剪裁
   * @param x 距离左上角的x轴距离
   * @param y 距离左上角的y轴距离
   * @param width 宽度
   * @param height 高度
   * @param sourcepath 图片源
   * @param descpath 目标位置
   */
  public static void imagecut(int x, int y, int width, int height, string sourcepath, string descpath) { 
    fileinputstream is = null; 
    imageinputstream iis = null; 
    try { 
      is = new fileinputstream(sourcepath); 
      string filesuffix = sourcepath.substring(sourcepath.lastindexof(".") + 1); 
      iterator<imagereader> it = imageio.getimagereadersbyformatname(filesuffix); 
      imagereader reader = it.next(); 
      iis = imageio.createimageinputstream(is); 
      reader.setinput(iis, true); 
      imagereadparam param = reader.getdefaultreadparam(); 
      rectangle rect = new rectangle(x, y, width, height); 
      param.setsourceregion(rect); 
      bufferedimage bi = reader.read(0, param); 
      imageio.write(bi, filesuffix, new file(descpath)); 
    } catch (exception ex) { 
      ex.printstacktrace(); 
    } finally { 
      if (is != null) { 
        try { 
          is.close(); 
        } catch (ioexception e) { 
          e.printstacktrace(); 
        } 
        is = null; 
      } 
      if (iis != null) { 
        try { 
          iis.close(); 
        } catch (ioexception e) { 
          e.printstacktrace(); 
        } 
        iis = null; 
      } 
    } 
  }

以上为切图代码,注意:如果不关闭流的话可能会影响其他代码对图片的操作,尤其是删除等操作

再来一个自己写的判断是否是纯色图片的代码,稍微改一下可以用来判断是不是彩色图片

/**
   * 判断是否为纯色
   * @param imgpath 图片源
   * @param percent 纯色百分比,即大于此百分比为同一种颜色则判定为纯色,范围[0-1]
   * @return
   * @throws ioexception
   */
  public static boolean issimplecolorimg(string imgpath,float percent) throws ioexception{
    bufferedimage src=imageio.read(new file(imgpath));
    int height=src.getheight();
    int width=src.getwidth();
    int count=0,pixtemp=0,pixel=0;
    for(int i=0;i<width;i++){
      for(int j=0;j<height;j++){
        pixel=src.getrgb(i, j);
        if(pixel==pixtemp) //如果上一个像素点和这个像素点颜色一样的话,就判定为同一种颜色
          count++;
        else
          count=0;
        if((float)count/(height*width)>=percent) //如果连续相同的像素点大于设定的百分比的话,就判定为是纯色的图片 
          return true;
        pixtemp=pixel;
      }
    }
    return false;
  }

以上为本人用来判断纯色的代码,逻辑比较简单,具体还要看需求来决定

如果是判断彩色的话,可以试试如下逻辑:

1、如果有n个像素点各不相同的话可以判定为彩色

2、如果图片上有>=n种像素点的话,判断为彩色图片

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。