diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/resources/fop/svg/transparency.svg | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/resources/fop/svg/transparency.svg b/test/resources/fop/svg/transparency.svg index 8f42e177f..e0b958516 100644 --- a/test/resources/fop/svg/transparency.svg +++ b/test/resources/fop/svg/transparency.svg @@ -35,5 +35,16 @@ <text x="280" y="75" style="font-size:20;font-weight:bold;fill-opacity:0.6;fill:green">SEE</text> <text x="250" y="95" style="font-size:20;font-weight:bold;fill-opacity:0.4;fill:orange;stroke:red">THROUGH</text> +<text x="220" y="205" style="font-size:12">Uniform Image Transparency</text> +<defs> + <filter id="matrixGreen" filterUnits="objectBoundingBox" + x="0%" y="0%" width="100%" height="100%"> + <feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" stitchTiles="noStitch" seed="0" result="turb"/> + <feColorMatrix type="matrix" values="0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1" /> + </filter> +</defs> +<rect x="240" y="225" width="100" height="75" style="opacity:0.4;filter:url(#matrixGreen)" /> + + </svg> |