Package com.lightcrafts.jai

Examples of com.lightcrafts.jai.LightnessLookupTable


                tableData[i] = (short) (((int) (y * (tableData.length - 1) + 0.5)) & 0xffff);
            }

        return table = source.getColorModel().getNumColorComponents() == 3
                       && scale == LuminosityScale ?
      new LightnessLookupTable(tableData, true) :
      new LookupTableJAI(tableData, true);
    }
View Full Code Here

TOP

Related Classes of com.lightcrafts.jai.LightnessLookupTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.