/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You 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 org.apache.batik.bridge; import java.awt.geom.Rectangle2D; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.batik.ext.awt.image.CompositeRule; import org.apache.batik.ext.awt.image.PadMode; import org.apache.batik.ext.awt.image.renderable.CompositeRable8Bit; import org.apache.batik.ext.awt.image.renderable.Filter; import org.apache.batik.ext.awt.image.renderable.PadRable8Bit; import org.apache.batik.gvt.GraphicsNode; import org.w3c.dom.Element; /** * Bridge class for the <feComposite> element. * * @author <a href="mailto:tkormann@apache.org">Thierry Kormann</a> * @version $Id$ */ public class SVGFeCompositeElementBridge extends AbstractSVGFilterPrimitiveElementBridge { /** * Constructs a new bridge for the <feComposite> element. */ public SVGFeCompositeElementBridge() {} /** * Returns 'feComposite'. */ public String getLocalName() { return SVG_FE_COMPOSITE_TAG; } /** * Creates a <code>Filter</code> primitive according to the specified * parameters. * * @param ctx the bridge context to use * @param filterElement the element that defines a filter * @param filteredElement the element that references the filter * @param filteredNode the graphics node to filter * * @param inputFilter the <code>Filter</code> that represents the current * filter input if the filter chain. * @param filterRegion the filter area defined for the filter chain * the new node will be part of. * @param filterMap a map where the mediator can map a name to the * <code>Filter</code> it creates. Other <code>FilterBridge</code>s * can then access a filter node from the filterMap if they * know its name. */ public Filter createFilter(BridgeContext ctx, Element filterElement, Element filteredElement, GraphicsNode filteredNode, Filter inputFilter, Rectangle2D filterRegion, Map filterMap) { // 'operator' attribute - default is 'over' CompositeRule rule = convertOperator(filterElement, ctx); // 'in' attribute Filter in = getIn(filterElement, filteredElement, filteredNode, inputFilter, filterMap, ctx); if (in == null) { return null; // disable the filter } // 'in2' attribute - required Filter in2 = getIn2(filterElement, filteredElement, filteredNode, inputFilter, filterMap, ctx); if (in2 == null) { return null; // disable the filter } Rectangle2D defaultRegion; defaultRegion = (Rectangle2D)in.getBounds2D().clone(); defaultRegion.add(in2.getBounds2D()); // get filter primitive chain region Rectangle2D primitiveRegion = SVGUtilities.convertFilterPrimitiveRegion(filterElement, filteredElement, filteredNode, defaultRegion, filterRegion, ctx); List srcs = new ArrayList(2); srcs.add(in2); srcs.add(in); Filter filter = new CompositeRable8Bit(srcs, rule, true); // handle the 'color-interpolation-filters' property handleColorInterpolationFilters(filter, filterElement); filter = new PadRable8Bit(filter, primitiveRegion, PadMode.ZERO_PAD); // update the filter Map updateFilterMap(filterElement, filter, filterMap); return filter; } /** * Converts the 'operator' attribute of the specified feComposite * filter primitive element. * * @param filterElement the feComposite filter element * @param ctx the BridgeContext to use for error information */ protected static CompositeRule convertOperator(Element filterElement, BridgeContext ctx) { String s = filterElement.getAttributeNS(null, SVG_OPERATOR_ATTRIBUTE); if (s.length() == 0) { return CompositeRule.OVER; // default is over } if (SVG_ATOP_VALUE.equals(s)) { return CompositeRule.ATOP; } if (SVG_IN_VALUE.equals(s)) { return CompositeRule.IN; } if (SVG_OVER_VALUE.equals(s)) { return CompositeRule.OVER; } if (SVG_OUT_VALUE.equals(s)) { return CompositeRule.OUT; } if (SVG_XOR_VALUE.equals(s)) { return CompositeRule.XOR; } if (SVG_ARITHMETIC_VALUE.equals(s)) { float k1 = convertNumber(filterElement, SVG_K1_ATTRIBUTE, 0, ctx); float k2 = convertNumber(filterElement, SVG_K2_ATTRIBUTE, 0, ctx); float k3 = convertNumber(filterElement, SVG_K3_ATTRIBUTE, 0, ctx); float k4 = convertNumber(filterElement, SVG_K4_ATTRIBUTE, 0, ctx); return CompositeRule.ARITHMETIC(k1, k2, k3, k4); } throw new BridgeException (ctx, filterElement, ERR_ATTRIBUTE_VALUE_MALFORMED, new Object[] {SVG_OPERATOR_ATTRIBUTE, s}); } }