aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/render/shading/ShadingPattern.java
blob: 6dac65f556f25becef3a889348eba93ec754f815 (plain)
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
/*
 * 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.fop.render.shading;

import java.util.List;

import org.apache.fop.pdf.PDFDeviceColorSpace;
import org.apache.fop.pdf.PDFNumber;

/**
 * A class for writing shading objects for different output formats
 */
public class ShadingPattern {

    private Shading shading;

    /**
     * Constructor
     * @param shading The shading object from which to write the output
     */
    public ShadingPattern(Shading shading) {
        this.shading = shading;
    }

    /**
     * Outputs the given shading object to a String
     * @param colorSpace The Colospace (PDF and Postscript)
     * @param shadingType The shading type
     * @param background The background
     * @param bBox The bounding box
     * @param antiAlias Anti-aliasing
     * @return Returns the output string
     */
    public String toString(PDFDeviceColorSpace colorSpace, int shadingType, List background,
            List bBox, boolean antiAlias) {
        StringBuffer p = new StringBuffer(128);
        p.append("<<\n/ShadingType " + shadingType + " \n");
        if (colorSpace != null) {
            p.append("/ColorSpace /"
                     + colorSpace.getName() + " \n");
        }

        if (background != null) {
            p.append("/Background [ ");
            for (int bgIndex = 0; bgIndex < background.size(); bgIndex++) {
                p.append(PDFNumber.doubleOut((Double)background.get(bgIndex))
                         + " ");
            }
            p.append("] \n");
        }

        if (bBox
                != null) {    // I've never seen an example, so I guess this is right.
            p.append("/BBox [ ");
            for (int bboxIndex = 0; bboxIndex < bBox.size(); bboxIndex++) {
                p.append(PDFNumber.doubleOut((Double)bBox.get(bboxIndex))
                         + " ");
            }
            p.append("] \n");
        }

        if (antiAlias) {
            p.append("/AntiAlias " + antiAlias + " \n");
        }

        // Here's where we differentiate based on what type it is.
        switch (shadingType) {
        //Function based shading
        case 1: p = shading.handleShadingType1(p); break;
        //Axial shading
        case 2:
        //Radial shading
        case 3: p = shading.handleShadingType2or3(p); break;
        //Free-form Gouraud-shaded triangle meshes
        case 4:
        //Coons patch meshes
        case 6:
        //Tensor product patch meshes
        case 7: p = shading.handleShadingType4or6or7(p); break;
        //Lattice Free form gouraud-shaded triangle mesh
        case 5: p = shading.handleShadingType5(p); break;
        default: //Shading pattern outside expecting values
            break;
        }

        p.append(">>");

        return (p.toString());
    }
}