File: MagickLower.bpl

package info (click to toggle)
babygimp 0.41-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 616 kB
  • ctags: 236
  • sloc: perl: 5,872; makefile: 28; sh: 4
file content (22 lines) | stat: -rw-r--r-- 1,116 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
$VAR1 = bless( {
                 'alias' => 'MagickLower',
                 'type' => 'regionfilter',
                 'comment' => 'Example Plugin (needs ImageMagick)',
                 'params' => {
                               '$int1' => {
                                            'alias' => 'Edge Size(x)',
                                            'val' => 1,
                                            'min' => '0',
                                            'default' => 1,
                                            'max' => 20
                                          },
                               '$int2' => {
                                            'alias' => 'Edge Size(y)',
                                            'val' => 1,
                                            'min' => '0',
                                            'default' => 1,
                                            'max' => 20
                                          }
                             },
                 'commandstring' => 'convert +raise $int1x$int2 - xpm:-'
               }, 'Plugin' );