1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*
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.image;
import java.awt.*;
import java.awt.geom.*;
import java.awt.image.*;
import com.jhlabs.composite.*;
public class RaysFilter extends MotionBlurOp {
private float opacity = 1.0f;
private float threshold = 0.0f;
private float strength = 0.5f;
private boolean raysOnly = false;
private Colormap colormap;
public RaysFilter() {
}
public void setOpacity(float opacity) {
this.opacity = opacity;
}
public float getOpacity() {
return opacity;
}
public void setThreshold( float threshold ) {
this.threshold = threshold;
}
public float getThreshold() {
return threshold;
}
public void setStrength( float strength ) {
this.strength = strength;
}
public float getStrength() {
return strength;
}
public void setRaysOnly(boolean raysOnly) {
this.raysOnly = raysOnly;
}
public boolean getRaysOnly() {
return raysOnly;
}
public void setColormap(Colormap colormap) {
this.colormap = colormap;
}
public Colormap getColormap() {
return colormap;
}
public BufferedImage filter( BufferedImage src, BufferedImage dst ) {
int width = src.getWidth();
int height = src.getHeight();
int[] pixels = new int[width];
int[] srcPixels = new int[width];
BufferedImage rays = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
int threshold3 = (int)(threshold*3*255);
for ( int y = 0; y < height; y++ ) {
getRGB( src, 0, y, width, 1, pixels );
for ( int x = 0; x < width; x++ ) {
int rgb = pixels[x];
int a = rgb & 0xff000000;
int r = (rgb >> 16) & 0xff;
int g = (rgb >> 8) & 0xff;
int b = rgb & 0xff;
int l = r + g + b;
if (l < threshold3)
pixels[x] = 0xff000000;
else {
l /= 3;
pixels[x] = a | (l << 16) | (l << 8) | l;
}
}
setRGB( rays, 0, y, width, 1, pixels );
}
rays = super.filter( rays, null );
for ( int y = 0; y < height; y++ ) {
getRGB( rays, 0, y, width, 1, pixels );
getRGB( src, 0, y, width, 1, srcPixels );
for ( int x = 0; x < width; x++ ) {
int rgb = pixels[x];
int a = rgb & 0xff000000;
int r = (rgb >> 16) & 0xff;
int g = (rgb >> 8) & 0xff;
int b = rgb & 0xff;
if ( colormap != null ) {
int l = r + g + b;
rgb = colormap.getColor( l * strength * (1/3f) );
} else {
r = PixelUtils.clamp((int)(r * strength));
g = PixelUtils.clamp((int)(g * strength));
b = PixelUtils.clamp((int)(b * strength));
rgb = a | (r << 16) | (g << 8) | b;
}
pixels[x] = rgb;
}
setRGB( rays, 0, y, width, 1, pixels );
}
if ( dst == null )
dst = createCompatibleDestImage( src, null );
Graphics2D g = dst.createGraphics();
if ( !raysOnly ) {
g.setComposite( AlphaComposite.SrcOver );
g.drawRenderedImage( src, null );
}
g.setComposite( MiscComposite.getInstance( MiscComposite.ADD, opacity ) );
g.drawRenderedImage( rays, null );
g.dispose();
return dst;
}
public String toString() {
return "Stylize/Rays...";
}
}
|