File: MagickRaise.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 (23 lines) | stat: -rw-r--r-- 1,120 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
$VAR1 = bless( {
                 'alias' => 'MagickRaise',
                 'type' => 'regionfilter',
                 'comment' => 'Example Plugin (need ImageMagick)
.',
                 'params' => {
                               '$int1' => {
                                            'alias' => 'Edge size (x)',
                                            'val' => 10,
                                            'min' => '0',
                                            'default' => 1,
                                            'max' => 32
                                          },
                               '$int2' => {
                                            'alias' => 'Edge size (y)',
                                            'val' => 2,
                                            'min' => '0',
                                            'default' => 1,
                                            'max' => 32
                                          }
                             },
                 'commandstring' => 'convert -raise $int1x$int2 - xpm:-'
               }, 'Plugin' );