Your IP : 216.73.216.68


Current Path : /home/sunflowe/www/components/com_jce/editor/libraries/pro/views/editor/tmpl/
Upload File :
Current File : /home/sunflowe/www/components/com_jce/editor/libraries/pro/views/editor/tmpl/editor_svg.php

<?php
/**
 * @copyright 	Copyright (c) 2009-2020 Ryan Demmer. All rights reserved
 * @license   	GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 * JCE is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses
 */
defined('JPATH_PLATFORM') or die;
?>
<svg id="svg-fx" version="1.1" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <filter id="grayscale">
            <feColorMatrix type="matrix" values="0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0 0 0 1 0"/>
        </filter>
        <filter id="blur">
            <feGaussianBlur stdDeviation="0" />
        </filter>
        <filter id="invert">
            <!--feColorMatrix type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"/-->
            <feComponentTransfer>
		<feFuncR type="table" tableValues="1 0"/>
		<feFuncG type="table" tableValues="1 0"/>
		<feFuncB type="table" tableValues="1 0"/>
            </feComponentTransfer>
        </filter>
        <filter id="sepia">
            <feColorMatrix type="matrix" values="0.393 0.769 0.189 0 0 0.349 0.686 0.168 0 0 0.272 0.534 0.131 0 0 0 0 0 1 0"/>
        </filter>
        <filter id="saturate">
            <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
        </filter>
        <filter id="desaturate">
            <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
        </filter>
        <filter id="brightness">
            <feComponentTransfer>
                <feFuncR type="linear" slope="1"/>
                <feFuncG type="linear" slope="1"/>
                <feFuncB type="linear" slope="1"/>
            </feComponentTransfer>
        </filter>

        <filter id="Sharpen">
          <feConvolveMatrix order="3 3" preserveAlpha="true" kernelMatrix="0 -1 0 -1 5 -1 0 -1 0"/>
        </filter>

        <!--filter id="contrast">
            <feComponentTransfer>
              <feFuncR type="linear" slope="[amount]" intercept="-(0.5 * [amount]) + 0.5"/>
              <feFuncG type="linear" slope="[amount]" intercept="-(0.5 * [amount]) + 0.5"/>
              <feFuncB type="linear" slope="[amount]" intercept="-(0.5 * [amount]) + 0.5"/>
            </feComponentTransfer>
          </filter>
        <filter id="hue-rotate" >
          <feColorMatrix type="hueRotate" values="[angle]" />
        <filter /-->
    </defs>
</svg>