]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Removed makeFunction methods, whose implementations are the same for both PDF and PS
authorVincent Hennebert <vhennebert@apache.org>
Fri, 11 Jul 2014 17:07:29 +0000 (17:07 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Fri, 11 Jul 2014 17:07:29 +0000 (17:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP-2393_gradient-rendering@1609746 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/ps/svg/PSFunction.java [deleted file]
src/java/org/apache/fop/render/ps/svg/PSShading.java
src/java/org/apache/fop/render/shading/GradientFactory.java
src/java/org/apache/fop/render/shading/PDFGradientFactory.java
src/java/org/apache/fop/render/shading/PSGradientFactory.java

diff --git a/src/java/org/apache/fop/render/ps/svg/PSFunction.java b/src/java/org/apache/fop/render/ps/svg/PSFunction.java
deleted file mode 100644 (file)
index 4ae7b60..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * 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.
- */
-
-/* $Id$ */
-
-package org.apache.fop.render.ps.svg;
-
-import java.io.UnsupportedEncodingException;
-import java.util.ArrayList;
-import java.util.List;
-
-import org.apache.fop.render.shading.Function;
-import org.apache.fop.render.shading.FunctionPattern;
-
-public class PSFunction extends Function {
-
-    /**
-     * Creates a Postscript function dictionary
-     * @param theFunctionType The function type (0 = Sampled, 2 = Exponential
-     * Interpolation, 3 = Stitching)
-     * @param theDomain The function domain
-     * @param theRange Range used for clipping
-     * @param theFunctions An array of sub-functions such as determining the
-     * colour values used in a gradient.
-     * @param theBounds Bounds determines where each boundary exists for whatever
-     * the function is mean't. In a gradient case, it would be the point between
-     * colours.
-     * @param theEncode The function encoding
-     */
-    public PSFunction(int theFunctionType, List<Double> theDomain,
-            List<Double> theRange, List<Function> theFunctions,
-            List<Double> theBounds, List<Double> theEncode) {
-        super(theFunctionType, theDomain, theRange, theFunctions, theBounds, theEncode);
-    }
-
-    /**
-     * Creates a Postscript function dictionary
-     * @param theFunctionType The function type (0 = Sampled, 2 = Exponential
-     * Interpolation, 3 = Stitching)
-     * @param theDomain The function domain
-     * @param theRange Range used for clipping
-     * @param theCZero In a gradient, this would be the first colour
-     * @param theCOne In a gradient, this would be the second colour
-     * @param theInterpolationExponentN Determines the number of values
-     * the function returns.
-     */
-    public PSFunction(int theFunctionType, List<Double> theDomain,
-            List<Double> theRange, List<Double> theCZero, List<Double> theCOne,
-            double theInterpolationExponentN) {
-        super(theFunctionType, theDomain, theRange, theCZero, theCOne, theInterpolationExponentN);
-    }
-
-    /**
-     * Outputs the function to a byte array
-     */
-    public byte[] toByteString() {
-        FunctionPattern pattern = new FunctionPattern(this);
-        try {
-            List<String> functionsStrings = new ArrayList<String>(getFunctions().size());
-            for (Function f : getFunctions()) {
-                functionsStrings.add(new String(((PSFunction) f).toByteString(), "UTF-8"));
-            }
-            return pattern.toWriteableString(functionsStrings).getBytes("UTF-8");
-        } catch (UnsupportedEncodingException ex) {
-            //This should have been made an enum type to avoid throwing exceptions.
-            return new byte[0];
-        }
-    }
-
-}
index 7465fcadb82650cf7205acca2b44bd6150040de7..68be4fcd8e9e396e9ab79e4f78823cfeb21f8245 100644 (file)
 
 package org.apache.fop.render.ps.svg;
 
-import java.io.UnsupportedEncodingException;
+import java.util.ArrayList;
 import java.util.List;
 
 import org.apache.fop.pdf.PDFDeviceColorSpace;
 import org.apache.fop.pdf.PDFNumber;
 import org.apache.fop.render.shading.Function;
+import org.apache.fop.render.shading.FunctionPattern;
 import org.apache.fop.render.shading.Shading;
 import org.apache.fop.render.shading.ShadingPattern;
 
@@ -72,7 +73,7 @@ public class PSShading implements Shading {
      * The object of the color mapping function (usually type 2 or 3).
      * Optional for Type 4,5,6, and 7: When it's nearly the same thing.
      */
-    protected PSFunction function = null;
+    protected Function function;
 
     /**
      * Required for Type 2: An Array of four numbers specifying
@@ -125,8 +126,7 @@ public class PSShading implements Shading {
 
         this.coords = theCoords;
         this.domain = theDomain;
-        assert theFunction instanceof PSFunction;
-        this.function = (PSFunction)theFunction;
+        this.function = theFunction;
         this.extend = theExtend;
     }
 
@@ -187,15 +187,20 @@ public class PSShading implements Shading {
 
         if (this.function != null) {
             p.append("\t/Function ");
-            try {
-                p.append(new String(this.function.toByteString(), "UTF-8") + " \n");
-            } catch (UnsupportedEncodingException ex) {
-                //This should have been made an enum type to avoid throwing exceptions.
-            }
+            p.append(functionToString(function) + " \n");
         }
         return p;
     }
 
+    private String functionToString(Function function) {
+        FunctionPattern pattern = new FunctionPattern(function);
+        List<String> functionsStrings = new ArrayList<String>(function.getFunctions().size());
+        for (Function f : function.getFunctions()) {
+            functionsStrings.add(functionToString(f));
+        }
+        return pattern.toWriteableString(functionsStrings);
+    }
+
     /**
      * A method to write a type 1 shading object
      * @param p The StringBuffer to write the shading object
index 81467d88d2210a152a5c74059fcfddb348c52dd3..f17a0e74cdced41bf364e4d6a2ef0bf548b845bf 100644 (file)
@@ -79,7 +79,7 @@ public abstract class GradientFactory<P extends Pattern> {
         List<Function> functions = createFunctions(gradient);
         //Gradients are currently restricted to sRGB
         PDFDeviceColorSpace colSpace = new PDFDeviceColorSpace(PDFDeviceColorSpace.DEVICE_RGB);
-        Function function = makeFunction(3, null, null, functions, bounds, null);
+        Function function = new Function(3, null, null, functions, bounds, null);
         Shading shading = makeShading(gradient instanceof LinearGradientPaint ? 2 : 3,
                 colSpace, null, null, false, coords, null, function, null);
         return makePattern(2, shading, null, null, matrix);
@@ -127,7 +127,7 @@ public abstract class GradientFactory<P extends Pattern> {
             Color nextColor = colors.get(currentPosition + 1);
             List<Double> c0 = toColorVector(currentColor);
             List<Double> c1 = toColorVector(nextColor);
-            Function function = makeFunction(2, null, null, c0, c1, 1.0);
+            Function function = new Function(2, null, null, c0, c1, 1.0);
             functions.add(function);
         }
         return functions;
@@ -149,14 +149,6 @@ public abstract class GradientFactory<P extends Pattern> {
         return gradientColors;
     }
 
-    public abstract Function makeFunction(int functionType, List<Double> theDomain,
-            List<Double> theRange, List<Function> theFunctions,
-            List<Double> theBounds, List<Double> theEncode);
-
-    public abstract Function makeFunction(int functionType, List<Double> theDomain,
-            List<Double> theRange, List<Double> theCZero, List<Double> theCOne,
-            double theInterpolationExponentN);
-
     public abstract Shading makeShading(int theShadingType,
             PDFDeviceColorSpace theColorSpace, List<Double> theBackground, List<Double> theBBox,
             boolean theAntiAlias, List<Double> theCoords, List<Double> theDomain,
index 1e57e72eaabc20f2e3ab10df2379df7994644a89..86c4e7e797c368ee7da5ffcb33e0b336a87b8002 100644 (file)
@@ -34,21 +34,6 @@ public class PDFGradientFactory extends GradientFactory<PDFPattern> {
         this.graphics2D = pdfGraphics2D;
     }
 
-    @Override
-    public Function makeFunction(int functionType, List<Double> theDomain,
-            List<Double> theRange, List<Function> theFunctions,
-            List<Double> theBounds, List<Double> theEncode) {
-        return new Function(functionType, theDomain, theRange, theFunctions, theBounds, theEncode);
-    }
-
-    public Function makeFunction(int functionType, List<Double> theDomain,
-            List<Double> theRange, List<Double> theCZero, List<Double> theCOne,
-            double theInterpolationExponentN) {
-        Function newFunction = new Function(functionType, theDomain, theRange, theCZero,
-                    theCOne, theInterpolationExponentN);
-        return newFunction;
-    }
-
     @Override
     public Shading makeShading(int theShadingType,
             PDFDeviceColorSpace theColorSpace, List<Double> theBackground, List<Double> theBBox,
index afd23ad759fc839dab8c2a63e8e0864fac0e0d8d..03011fa35e0df59d0d020dfe756e30e1246d2ba0 100644 (file)
@@ -20,29 +20,11 @@ package org.apache.fop.render.shading;
 import java.util.List;
 
 import org.apache.fop.pdf.PDFDeviceColorSpace;
-import org.apache.fop.render.ps.svg.PSFunction;
 import org.apache.fop.render.ps.svg.PSPattern;
 import org.apache.fop.render.ps.svg.PSShading;
 
 public class PSGradientFactory extends GradientFactory<PSPattern> {
 
-    public Function makeFunction(int functionType, List<Double> theDomain,
-            List<Double> theRange, List<Function> theFunctions,
-            List<Double> theBounds, List<Double> theEncode) {
-        Function newFunction = new PSFunction(functionType, theDomain, theRange, theFunctions,
-                    theBounds, theEncode);
-        return newFunction;
-    }
-
-    @Override
-    public Function makeFunction(int functionType, List<Double> theDomain,
-            List<Double> theRange, List<Double> theCZero, List<Double> theCOne,
-            double theInterpolationExponentN) {
-        Function newFunction = new PSFunction(functionType, theDomain, theRange, theCZero,
-                    theCOne, theInterpolationExponentN);
-        return newFunction;
-    }
-
     @Override
     public Shading makeShading(int theShadingType,
             PDFDeviceColorSpace theColorSpace, List<Double> theBackground, List<Double> theBBox,