/* * 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 railo.runtime.img.filter;import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.util.Date; import java.util.Random; import railo.runtime.engine.ThreadLocalPageContext; import railo.runtime.exp.FunctionException; import railo.runtime.exp.PageException; import railo.runtime.img.ImageUtil; import railo.runtime.type.KeyImpl; import railo.runtime.type.Struct; import railo.runtime.type.util.CollectionUtil; public class SmearFilter extends WholeImageFilter implements DynFiltering { public final static int CROSSES = 0; public final static int LINES = 1; public final static int CIRCLES = 2; public final static int SQUARES = 3; private Colormap colormap = new LinearColormap(); private float angle = 0; private float density = 0.5f; private float scatter = 0.0f; private int distance = 8; private Random randomGenerator; private long seed = 567; private int shape = LINES; private float mix = 0.5f; private int fadeout = 0; private boolean background = false; public SmearFilter() { randomGenerator = new Random(); } public void setShape(int shape) { this.shape = shape; } public int getShape() { return shape; } public void setDistance(int distance) { this.distance = distance; } public int getDistance() { return distance; } public void setDensity(float density) { this.density = density; } public float getDensity() { return density; } public void setScatter(float scatter) { this.scatter = scatter; } public float getScatter() { return scatter; } /** * Specifies the angle of the texture. * @param angle the angle of the texture. * @angle * @see #getAngle */ public void setAngle(float angle) { this.angle = angle; } /** * Returns the angle of the texture. * @return the angle of the texture. * @see #setAngle */ public float getAngle() { return angle; } public void setMix(float mix) { this.mix = mix; } public float getMix() { return mix; } public void setFadeout(int fadeout) { this.fadeout = fadeout; } public int getFadeout() { return fadeout; } public void setBackground(boolean background) { this.background = background; } public boolean getBackground() { return background; } public void randomize() { seed = new Date().getTime(); } private float random(float low, float high) { return low+(high-low) * randomGenerator.nextFloat(); } protected int[] filterPixels( int width, int height, int[] inPixels, Rectangle transformedSpace ) { int[] outPixels = new int[width * height]; randomGenerator.setSeed(seed); float sinAngle = (float)Math.sin(angle); float cosAngle = (float)Math.cos(angle); int i = 0; int numShapes; for (int y = 0; y < height; y++) for (int x = 0; x < width; x++) { outPixels[i] = background ? 0xffffffff : inPixels[i]; i++; } switch (shape) { case CROSSES: //Crosses numShapes = (int)(2*density*width * height / (distance + 1)); for (i = 0; i < numShapes; i++) { int x = (randomGenerator.nextInt() & 0x7fffffff) % width; int y = (randomGenerator.nextInt() & 0x7fffffff) % height; int length = randomGenerator.nextInt() % distance + 1; int rgb = inPixels[y*width+x]; for (int x1 = x - length; x1 < x + length + 1; x1++) { if (x1 >= 0 && x1 < width) { int rgb2 = background ? 0xffffffff : outPixels[y*width+x1]; outPixels[y*width+x1] = ImageMath.mixColors(mix, rgb2, rgb); } } for (int y1 = y - length; y1 < y + length + 1; y1++) { if (y1 >= 0 && y1 < height) { int rgb2 = background ? 0xffffffff : outPixels[y1*width+x]; outPixels[y1*width+x] = ImageMath.mixColors(mix, rgb2, rgb); } } } break; case LINES: numShapes = (int)(2*density*width * height / 2); for (i = 0; i < numShapes; i++) { int sx = (randomGenerator.nextInt() & 0x7fffffff) % width; int sy = (randomGenerator.nextInt() & 0x7fffffff) % height; int rgb = inPixels[sy*width+sx]; int length = (randomGenerator.nextInt() & 0x7fffffff) % distance; int dx = (int)(length*cosAngle); int dy = (int)(length*sinAngle); int x0 = sx-dx; int y0 = sy-dy; int x1 = sx+dx; int y1 = sy+dy; int x, y, d, incrE, incrNE, ddx, ddy; if (x1 < x0) ddx = -1; else ddx = 1; if (y1 < y0) ddy = -1; else ddy = 1; dx = x1-x0; dy = y1-y0; dx = Math.abs(dx); dy = Math.abs(dy); x = x0; y = y0; if (x < width && x >= 0 && y < height && y >= 0) { int rgb2 = background ? 0xffffffff : outPixels[y*width+x]; outPixels[y*width+x] = ImageMath.mixColors(mix, rgb2, rgb); } if (Math.abs(dx) > Math.abs(dy)) { d = 2*dy-dx; incrE = 2*dy; incrNE = 2*(dy-dx); while (x != x1) { if (d <= 0) d += incrE; else { d += incrNE; y += ddy; } x += ddx; if (x < width && x >= 0 && y < height && y >= 0) { int rgb2 = background ? 0xffffffff : outPixels[y*width+x]; outPixels[y*width+x] = ImageMath.mixColors(mix, rgb2, rgb); } } } else { d = 2*dx-dy; incrE = 2*dx; incrNE = 2*(dx-dy); while (y != y1) { if (d <= 0) d += incrE; else { d += incrNE; x += ddx; } y += ddy; if (x < width && x >= 0 && y < height && y >= 0) { int rgb2 = background ? 0xffffffff : outPixels[y*width+x]; outPixels[y*width+x] = ImageMath.mixColors(mix, rgb2, rgb); } } } } break; case SQUARES: case CIRCLES: int radius = distance+1; int radius2 = radius * radius; numShapes = (int)(2*density*width * height / radius); for (i = 0; i < numShapes; i++) { int sx = (randomGenerator.nextInt() & 0x7fffffff) % width; int sy = (randomGenerator.nextInt() & 0x7fffffff) % height; int rgb = inPixels[sy*width+sx]; for (int x = sx - radius; x < sx + radius + 1; x++) { for (int y = sy - radius; y < sy + radius + 1; y++) { int f; if (shape == CIRCLES) f = (x - sx) * (x - sx) + (y - sy) * (y - sy); else f = 0; if (x >= 0 && x < width && y >= 0 && y < height && f <= radius2) { int rgb2 = background ? 0xffffffff : outPixels[y*width+x]; outPixels[y*width+x] = ImageMath.mixColors(mix, rgb2, rgb); } } } } } return outPixels; } public String toString() { return "Effects/Smear..."; } public BufferedImage filter(BufferedImage src, Struct parameters) throws PageException {BufferedImage dst=ImageUtil.createBufferedImage(src); Object o; if((o=parameters.removeEL(KeyImpl.init("Angle")))!=null)setAngle(ImageFilterUtil.toFloatValue(o,"Angle")); if((o=parameters.removeEL(KeyImpl.init("Density")))!=null)setDensity(ImageFilterUtil.toFloatValue(o,"Density")); if((o=parameters.removeEL(KeyImpl.init("Distance")))!=null)setDistance(ImageFilterUtil.toIntValue(o,"Distance")); if((o=parameters.removeEL(KeyImpl.init("Shape")))!=null)setShape(ImageFilterUtil.toIntValue(o,"Shape")); if((o=parameters.removeEL(KeyImpl.init("Scatter")))!=null)setScatter(ImageFilterUtil.toFloatValue(o,"Scatter")); if((o=parameters.removeEL(KeyImpl.init("Mix")))!=null)setMix(ImageFilterUtil.toFloatValue(o,"Mix")); if((o=parameters.removeEL(KeyImpl.init("Fadeout")))!=null)setFadeout(ImageFilterUtil.toIntValue(o,"Fadeout")); if((o=parameters.removeEL(KeyImpl.init("Background")))!=null)setBackground(ImageFilterUtil.toBooleanValue(o,"Background")); // check for arguments not supported if(parameters.size()>0) { throw new FunctionException(ThreadLocalPageContext.get(), "ImageFilter", 3, "parameters", "the parameter"+(parameters.size()>1?"s":"")+" ["+CollectionUtil.getKeyList(parameters,", ")+"] "+(parameters.size()>1?"are":"is")+" not allowed, only the following parameters are supported [Angle, Density, Distance, Shape, Scatter, Mix, Fadeout, Background]"); } return filter(src, dst); } }