/* 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.AlphaComposite; import java.awt.Color; import java.awt.GradientPaint; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.Shape; import java.awt.image.BufferedImage; public class MirrorFilter extends AbstractBufferedImageOp { private float opacity = 1.0f; private float centreY = 0.5f; private float distance; private float angle; private float rotation; private float gap; public MirrorFilter() { } /** * Specifies the angle of the mirror. * @param angle the angle of the mirror. * @angle * @see #getAngle */ public void setAngle( float angle ) { this.angle = angle; } /** * Returns the angle of the mirror. * @return the angle of the mirror. * @see #setAngle */ public float getAngle() { return angle; } public void setDistance( float distance ) { this.distance = distance; } public float getDistance() { return distance; } public void setRotation( float rotation ) { this.rotation = rotation; } public float getRotation() { return rotation; } public void setGap( float gap ) { this.gap = gap; } public float getGap() { return gap; } /** * Set the opacity of the reflection. * @param opacity the opacity. * @see #getOpacity */ public void setOpacity( float opacity ) { this.opacity = opacity; } /** * Get the opacity of the reflection. * @return the opacity. * @see #setOpacity */ public float getOpacity() { return opacity; } public void setCentreY( float centreY ) { this.centreY = centreY; } public float getCentreY() { return centreY; } @Override public BufferedImage filter( BufferedImage src, BufferedImage dst ) { if ( dst == null ) { dst = createCompatibleDestImage( src, null ); } BufferedImage tsrc = src; Shape clip; int width = src.getWidth(); int height = src.getHeight(); int h = (int)(centreY * height); int d = (int)(gap * height); Graphics2D g = dst.createGraphics(); g.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF); g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_OFF); g.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, RenderingHints.VALUE_FRACTIONALMETRICS_OFF); g.setRenderingHint(RenderingHints.KEY_COLOR_RENDERING, RenderingHints.VALUE_COLOR_RENDER_SPEED); g.setRenderingHint(RenderingHints.KEY_DITHERING, RenderingHints.VALUE_DITHER_DISABLE); clip = g.getClip(); g.clipRect( 0, 0, width, h ); g.drawRenderedImage( src, null ); g.setClip( clip ); g.clipRect( 0, h+d, width, height-h-d ); g.translate( 0, 2*h+d ); g.scale( 1, -1 ); g.drawRenderedImage( src, null ); g.setPaint( new GradientPaint( 0, 0, new Color( 1.0f, 0.0f, 0.0f, 0.0f ), 0, h, new Color( 0.0f, 1.0f, 0.0f, opacity ) ) ); g.setComposite( AlphaComposite.getInstance( AlphaComposite.DST_IN ) ); g.fillRect( 0, 0, width, h ); g.setClip( clip ); g.dispose(); return dst; } @Override public String toString() { return "Effects/Mirror..."; } @Override public Object clone() throws CloneNotSupportedException { return super.clone(); //To change body of generated methods, choose Tools | Templates. } }