/* Copyright 2006 Jerry Huxtable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.jhlabs.composite; import java.awt.CompositeContext; import java.awt.RenderingHints; import java.awt.image.ColorModel; public class ColorBurnComposite extends RGBComposite { public ColorBurnComposite( float alpha ) { super( alpha ); } @Override public CompositeContext createContext( ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints ) { return new Context( extraAlpha, srcColorModel, dstColorModel ); } static class Context extends RGBCompositeContext { Context( float alpha, ColorModel srcColorModel, ColorModel dstColorModel ) { super( alpha, srcColorModel, dstColorModel ); } @Override public void composeRGB( int[] src, int[] dst, float alpha ) { int w = src.length; for ( int i = 0; i < w; i += 4 ) { int sr = src[i]; int dir = dst[i]; int sg = src[i+1]; int dig = dst[i+1]; int sb = src[i+2]; int dib = dst[i+2]; int sa = src[i+3]; int dia = dst[i+3]; int dor, dog, dob; if (sr != 0) { dor = Math.max(255 - (((int)(255-dir) << 8) / sr), 0); } else { dor = sr; } if (sg != 0) { dog = Math.max(255 - (((int)(255-dig) << 8) / sg), 0); } else { dog = sg; } if (sb != 0) { dob = Math.max(255 - (((int)(255-dib) << 8) / sb), 0); } else { dob = sb; } float a = alpha*sa/255f; float ac = 1-a; dst[i] = (int)(a*dor + ac*dir); dst[i+1] = (int)(a*dog + ac*dig); dst[i+2] = (int)(a*dob + ac*dib); dst[i+3] = (int)(sa*alpha + dia*ac); } } } }