home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Preset_BarrelCorrection_Fact < prev    next >
Encoding:
Text File  |  2003-04-22  |  711 b   |  26 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for BarrelCorrection effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_BarrelCorrection():
  14.     return {
  15.         'Strength': 25,
  16.         'GeneralSettings': {
  17.             'AutoActionMode': 0,
  18.             'ExecutionMode': 0
  19.             },
  20.         'PreserveCentralScale': 0,
  21.         'BackgroundColor': None
  22.         }
  23.  
  24. def Do(Environment):
  25.     App.Do( Environment, 'BarrelCorrection', Preset_BarrelCorrection())
  26.