File: dropshadow.xml

package info (click to toggle)
kdenlive 25.12.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 125,932 kB
  • sloc: cpp: 206,733; xml: 11,858; python: 1,139; ansic: 1,054; javascript: 578; sh: 389; makefile: 15
file content (23 lines) | stat: -rw-r--r-- 1,044 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="dropshadow" id="dropshadow">
    <name>Drop Shadow</name>
    <description>Create a shadow effect from the alpha channel</description>
    <author>Meltytech, LLC</author>
    <parameter type="animated" name="radius" max="100" min="0" default="1">
        <name>Blur Radius</name>
        <comment>The amount in pixel to blur the edge of the shadow</comment>
    </parameter>
    <parameter type="animated" name="x" max="100" min="-100" default="8">
        <name>X Offset</name>
        <comment>The relative horizontal position of the shadow</comment>
    </parameter>
    <parameter type="animated" name="y" max="100" min="-100" default="8">
        <name>Y Offset</name>
        <comment>The relative vertical position of the shadow</comment>
    </parameter>
    <parameter type="color" name="color" default="#b4636363" alpha="1">
        <name>Color</name>
        <comment>The color of the shadow including alpha</comment>
    </parameter>
</effect>