| Current Path : /home/sunflowe/www/components/com_jce/editor/tiny_mce/plugins/imgmanager_ext/tmpl/ |
| Current File : /home/sunflowe/www/components/com_jce/editor/tiny_mce/plugins/imgmanager_ext/tmpl/editor_svg.php |
<?php
/**
* @package JCE
* @copyright Copyright (c) 2009-2015 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('_JEXEC') or die('RESTRICTED');
?>
<svg id="svg-fx" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="threshold">
<feColorMatrix type="matrix" values="1 1 1 0 0 1 1 1 0 0 1 1 1 0 0 -1 -1 -1 0 1"/>
</filter>
<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="darkness">
<feComponentTransfer>
<feFuncR type="linear" slope="1"/>
<feFuncG type="linear" slope="1"/>
<feFuncB type="linear" slope="1"/>
</feComponentTransfer>
</filter>
</defs>
</svg>