summaryrefslogtreecommitdiff
path: root/tests/fixtures/reftests/svg1.1/filters-conv-01-f.svg
blob: 0ff4c9f39616d9d7996e0576fa3589eff7b05ad0 (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
106
107
108
109
110
111
112
<svg version="1.1" baseProfile="full" id="svg-root"
  width="100%" height="100%" viewBox="0 0 480 360"
  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <!--======================================================================-->
  <!--=  SVG 1.1 2nd Edition Test Case                                     =-->
  <!--======================================================================-->
  <!--=  Copyright 2009 World Wide Web Consortium, (Massachusetts          =-->
  <!--=  Institute of Technology, European Research Consortium for         =-->
  <!--=  Informatics and Mathematics (ERCIM), Keio University).            =-->
  <!--=  All Rights Reserved.                                              =-->
  <!--=  See http://www.w3.org/Consortium/Legal/.                          =-->
  <!--======================================================================-->
  <d:SVGTestCase xmlns:d="http://www.w3.org/2000/02/svg/testsuite/description/"
    template-version="1.4" reviewer="SVGWG" author="Vincent Hardy" status="accepted"
    version="$Revision: 1.6 $" testname="$RCSfile: filters-conv-01-f.svg,v $">
    <d:testDescription xmlns="http://www.w3.org/1999/xhtml" href="http://www.w3.org/TR/SVG11/filters.html#feConvolveMatrixElement">
      <p>
        Test which verifies the basic facilities of
        feConvolveMatrix.
      </p>
      <p>
        This test defines six filters that exercise traditional
        convolutions: uniform blur, vertical and horizontal
        blurs, edge detection, embossing and sharpening. Note
        that the edge detection filter produces a fully
        transparent image because the alpha channel is convolved
        and produces 0 values.
      </p>
    </d:testDescription>
    <d:operatorScript xmlns="http://www.w3.org/1999/xhtml">
      <p>
        Run the test. No interaction required.
      </p>
    </d:operatorScript>
    <d:passCriteria xmlns="http://www.w3.org/1999/xhtml">
      <p>
        The rendered picture should match the reference image
        exactly, except for possible variations in the
        labelling text (per CSS2 rules).
      </p>
    </d:passCriteria>
  </d:SVGTestCase>
  <title id="test-title">$RCSfile: filters-conv-01-f.svg,v $</title>
  <defs>
    <font-face font-family="SVGFreeSansASCII" unicode-range="U+0-7F">
      <font-face-src>
        <font-face-uri xlink:href="../resources/SVGFreeSans.svg#ascii"/>
      </font-face-src>
    </font-face>
  </defs>
  <g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size="12">
    <!--Generated by the Java 2D API Graphics2D SVG Generator, Sun Microsystems Inc.-->
    <g transform="translate(20, 40)">
      <defs id="defs1">
        <filter id="convolve1" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
          <feConvolveMatrix order="3 3" kernelMatrix="0.1111 0.1111 0.1111 0.1111 0.1111 0.1111 0.1111 0.1111 0.1111" edgeMode="none"/>
        </filter>
        <filter id="convolve2" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
          <feConvolveMatrix order="3 3" kernelMatrix="-1 -1 -1 -1 8 -1 -1 -1 -1" edgeMode="duplicate"/>
        </filter>
        <filter id="convolve3" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
          <feConvolveMatrix order="3 3" kernelMatrix="-1 -1 -1 -1 9 -1 -1 -1 -1" edgeMode="none"/>
        </filter>
        <filter id="convolve4" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
          <feConvolveMatrix order="3 3" kernelMatrix="-2 0 0 0 1 0 0 0 2" edgeMode="none"/>
        </filter>
        <filter id="convolve5" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
          <feConvolveMatrix order="3 1" kernelMatrix="0.3333 0.3333 0.3333" edgeMode="none"/>
        </filter>
        <filter id="convolve6" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
          <feConvolveMatrix order="1 3" kernelMatrix="0.3333 0.3333 0.3333" edgeMode="none"/>
        </filter>
      </defs>
      <g shape-rendering="geometricPrecision" text-rendering="geometricPrecision">
        <text x="10" y="20" stroke="none" opacity="1" filter="none">Blur (3x3)</text>
        <g opacity="1" filter="none">
          <image width="50" height="63" xlink:href="images/filters-conv-01-f.includeimage.png" x="10" y="30" filter="url(#convolve1)"/>
        </g>
        <text x="10" y="20" transform="translate(150,0)" stroke="none" opacity="1" filter="none">Edge Detection (3x3)</text>
        <g transform="translate(150,0)" opacity="1" filter="none">
          <image width="50" height="63" xlink:href="images/filters-conv-01-f.includeimage.png" x="10" y="30" filter="url(#convolve2)"/>
        </g>
        <text x="10" y="20" transform="translate(300,0)" stroke="none" opacity="1" filter="none">Sharpening (3x3)</text>
        <g transform="translate(300,0)" opacity="1" filter="none">
          <image width="50" height="63" xlink:href="images/filters-conv-01-f.includeimage.png" x="10" y="30" filter="url(#convolve3)"/>
        </g>
        <text x="10" y="20" transform="translate(0,93)" stroke="none" opacity="1" filter="none">Embossing (3x3)</text>
        <g transform="translate(0,93)" opacity="1" filter="none">
          <image width="50" height="63" xlink:href="images/filters-conv-01-f.includeimage.png" x="10" y="30" filter="url(#convolve4)"/>
        </g>
        <text x="10" y="20" transform="translate(150,93)" stroke="none" opacity="1" filter="none">Horizontal blur (3x1)</text>
        <g transform="translate(150,93)" opacity="1" filter="none">
          <image width="50" height="63" xlink:href="images/filters-conv-01-f.includeimage.png" x="10" y="30" filter="url(#convolve5)"/>
        </g>
        <text x="10" y="20" transform="translate(300,93)" stroke="none" opacity="1" filter="none">Vertical blur (1x3)</text>
        <g transform="translate(300,93)" opacity="1" filter="none">
          <image width="50" height="63" xlink:href="images/filters-conv-01-f.includeimage.png" x="10" y="30" filter="url(#convolve6)"/>
        </g>
      </g>
    </g>
  </g>
  <g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
    <text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.6 $</text>
  </g>
  <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke="#000000"/>
  <!-- comment out this watermark once the test is approved -->
  <!--<g id="draft-watermark">
    <rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-width="1"/>
    <text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size="20" x="240"
      text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white">DRAFT</text>
  </g>-->
</svg>