File: solidColor.svg

package info (click to toggle)
batik 1.18%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 28,972 kB
  • sloc: java: 192,233; xml: 19,449; javascript: 1,276; sh: 85; makefile: 5
file content (109 lines) | stat: -rw-r--r-- 4,667 bytes parent folder | download
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
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">

<!--

   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.

-->
<!-- ====================================================================== -->
<!-- regularPoly extension tag test                                         -->
<!--                                                                        -->
<!-- @author Thomas.DeWeese@Kodak.com                                       -->
<!-- @version $Id$ -->
<!-- ====================================================================== -->

<?xml-stylesheet type="text/css" href="extension.css" ?>

<svg xmlns="http://www.w3.org/2000/svg" 
     id="body" width="450" height="500" xml:space="preserve" 
     viewBox="0 0 450 500"
     xmlns:xlink="http://www.w3.org/1999/xlink" 
     xmlns:svg="http://www.w3.org/2000/svg"
     xmlns:batik="http://xml.apache.org/batik/ext">

    <title>Solid Color Test</title>
  
    <!-- ============================================================= -->
    <!-- Test content                                                  -->
    <!-- ============================================================= -->
    <defs>
        <path d="M0,0 c50,-50 50,50 100,0 s50,50 100,0 
                 s50,50 100,0 s50,50 100,0" 
              id="squiggle" fill="none" stroke="black" stroke-width="10"/> 
    </defs>

    <g id="testContent" class="legend" style="text-anchor:middle">
        <text x="225" y="40" class="title">
            Solid Color Paint Server
        </text>

        <use x="25" y="135" xlink:href="#squiggle"/>
  
        <use x="25" y="275" xlink:href="#squiggle"/>

        <use x="25" y="415" xlink:href="#squiggle"/>
  
        <switch>
          <g requiredExtensions="http://xml.apache.org/batik/ext/solidColor/1.0"
             fill="#0D0" stroke="#88F" stroke-width="2">

            <batik:solidColor id="SolidPurple" solid-color="#FF00FF" />
            <batik:solidColor id="TransPurple" 
                   solid-color="#FF00FF" solid-opacity=".5"/>
            <batik:solidColor id="SolidOrange"      
                   solid-color="orange" solid-opacity="1"/>

            <circle fill="url(#SolidPurple)"   cx="85"  cy="135" r="50"/>
            <circle fill="url(#TransPurple)"   cx="225" cy="135" r="50"/>
            <circle fill="url(#SolidOrange)" cx="365" cy="135" r="50"/>

            <g stroke-width="5" fill="none">
                <circle stroke="url(#SolidPurple)" cx="85"  cy="275" r="50"/>
                <circle stroke="url(#TransPurple)" cx="225" cy="275" r="50"/>
                <circle stroke="url(#SolidOrange)" cx="365" cy="275" r="50"/>
            </g>

            <circle fill="url(#SolidPurple)"  fill-opacity="0.5" 
                    cx="85"  cy="415" r="50"/>
            <circle fill="url(#TransPurple)"  fill-opacity="0.5" 
                    cx="225" cy="415" r="50"/>
            <circle fill="url(#SolidOrange)"  fill-opacity="0.5" 
                    cx="365" cy="415" r="50"/>
          </g>
         
          <g fill="red">
            <circle cx="85"  cy="135" r="50"/>
            <circle cx="225" cy="135" r="50"/>
            <circle cx="365" cy="135" r="50"/>
                                            
            <circle cx="85"  cy="275" r="50"/>
            <circle cx="225" cy="275" r="50"/>
            <circle cx="365" cy="275" r="50"/>
      
            <circle cx="85"  cy="415" r="50"/>
            <circle cx="225" cy="415" r="50"/>
            <circle cx="365" cy="415" r="50"/>
          </g>
        </switch>
    </g>

    <!-- ============================================================= -->
    <!-- Batik sample mark                                             -->
    <!-- ============================================================= -->
    <use xlink:href="../batikLogo.svg#Batik_Tag_Box" />
</svg>