/* * HaoRan ImageFilter Classes v0.1 * Copyright (C) 2012 Zhenjun Dai * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by the * Free Software Foundation; either version 2.1 of the License, or (at your * option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; if not, write to the Free Software Foundation. */ package com.marshalchen.common.uimodule.ImageFilter; /** * �����Աȶ���Ч * @author daizhj * */ public class BrightContrastFilter implements IImageFilter { /// <summary> /// The brightness factor. /// Should be in the range [-1, 1]. /// </summary> public float BrightnessFactor = 0.25f; /// <summary> /// The contrast factor. /// Should be in the range [-1, 1]. /// </summary> public float ContrastFactor = 0f; //@Override public Image process(Image imageIn) { int r,g,b; // Convert to integer factors int bfi = (int)(BrightnessFactor * 255); float cf = 1f + ContrastFactor; cf *= cf; int cfi = (int)(cf * 32768) + 1; for (int x = 0; x < imageIn.getWidth(); x++) { for (int y = 0; y < imageIn.getHeight(); y++) { r = imageIn.getRComponent(x, y); g = imageIn.getGComponent(x, y); b = imageIn.getBComponent(x, y); // Modify brightness (addition) if (bfi != 0) { // Add brightness int ri = r + bfi; int gi = g + bfi; int bi = b + bfi; // Clamp to byte boundaries r = ri > 255 ? 255 : (ri < 0 ? 0 : ri); g = gi > 255 ? 255 : (gi < 0 ? 0 : gi); b = bi > 255 ? 255 : (bi < 0 ? 0 : bi); } // Modifiy contrast (multiplication) if (cfi != 32769){ // Transform to range [-128, 127] int ri = r - 128; int gi = g - 128; int bi = b - 128; // Multiply contrast factor ri = (ri * cfi) >> 15; gi = (gi * cfi) >> 15; bi = (bi * cfi) >> 15; // Transform back to range [0, 255] ri = ri + 128; gi = gi + 128; bi = bi + 128; // Clamp to byte boundaries r = ri > 255 ? 255 : (ri < 0 ? 0 : ri); g = gi > 255 ? 255 : (gi < 0 ? 0 : gi); b = bi > 255 ? 255 : (bi < 0 ? 0 : bi); } imageIn.setPixelColor(x, y, r, g, b); } } return imageIn; } }