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

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Do(Environment):
  13.     App.Do( Environment, 'ColorAdjustBrightnessContrast', {
  14.             'BrightnessContrast': {
  15.                 'Brightness': 35, 
  16.                 'Contrast': 20
  17.                 }, 
  18.             'GeneralSettings': {
  19.                 'ExecutionMode': App.Constants.ExecutionMode.Interactive, 
  20.                 'PreviewVisible': App.Constants.Boolean.true, 
  21.                 'AutoProof': App.Constants.Boolean.false, 
  22.                 'AutoActionMode': App.Constants.AutoActionMode.Match
  23.                 }
  24.             }) 
  25.  
  26.