您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關java中怎么調整圖片對比度,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
測試代碼
public static void main(String[] args) { //文件與BufferedImage間的轉換 BufferedImage bi=file2img("test.jpg"); //讀取圖片 BufferedImage bii=img_color_contrast(bi,100); img2file(bii,"jpg","test1.jpg"); //生成圖片 }
圖片對比度調整代碼
//圖片對比度調整 public static BufferedImage img_color_contrast(BufferedImage imgsrc, int contrast) { try { int contrast_average = 128; //創建一個不帶透明度的圖片 BufferedImage back=new BufferedImage(imgsrc.getWidth(), imgsrc.getHeight(),BufferedImage.TYPE_INT_RGB); int width = imgsrc.getWidth(); int height = imgsrc.getHeight(); int pix; for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { int pixel = imgsrc.getRGB(j, i); Color color = new Color(pixel); if (color.getRed() < contrast_average) { pix = color.getRed()- Math.abs(contrast); if (pix < 0) pix = 0; } else { pix = color.getRed() + Math.abs(contrast); if (pix > 255) pix = 255; } int red= pix; if (color.getGreen() < contrast_average) { pix = color.getGreen()- Math.abs(contrast); if (pix < 0) pix = 0; } else { pix = color.getGreen() + Math.abs(contrast); if (pix > 255) pix = 255; } int green= pix; if (color.getBlue() < contrast_average) { pix = color.getBlue()- Math.abs(contrast); if (pix < 0) pix = 0; } else { pix = color.getBlue() + Math.abs(contrast); if (pix > 255) pix = 255; } int blue= pix; color = new Color(red,green,blue); int x=color.getRGB(); back.setRGB(j,i,x); } } return back; } catch (Exception e) { e.printStackTrace(); return null; } }
圖片讀取,和存儲函數
//讀取圖片 public static BufferedImage file2img(String imgpath) { try { BufferedImage bufferedImage=ImageIO.read(new File(imgpath)); return bufferedImage; } catch (Exception e) { e.printStackTrace(); return null; } } //保存圖片,extent為格式,"jpg"、"png"等 public static void img2file(BufferedImage img,String extent,String newfile) { try { ImageIO.write(img, extent, new File(newfile)); } catch (Exception e) { e.printStackTrace(); } }
看完上述內容,你們對java中怎么調整圖片對比度有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。