File: NetpbmShear.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 (17 lines) | stat: -rw-r--r-- 816 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$VAR1 = bless( {
                 'alias' => 'NetpbmShear',
                 'type' => 'filter',
                 'comment' => 'Example Plugin (needs Netpbm)
Shears the image by a given angle.
Won\'t work with transparent images.',
                 'params' => {
                               '$int1' => {
                                            'alias' => 'Angle',
                                            'val' => '0',
                                            'min' => -45,
                                            'default' => '0',
                                            'max' => 45
                                          }
                             },
                 'commandstring' => 'xpmtoppm | ppmquant 256 | pnmshear $int1 | ppmquant 256 | ppmtoxpm'
               }, 'Plugin' );