from JascApp import *

def ScriptProperties():
    return {
        'Author': u'Jasc Software, Inc.',
        'Copyright': u'Copyright (c) 2003-2004 Jasc Software, Inc.  All rights reserved.',
        'Description': '',
        'Host': 'Paint Shop Pro',
        'Host Version': '8.00'
        }

def Preset_Crop():
    return {
        'CropRect': ((0,0),1535,1062), 
        'Mode': App.Constants.CropMode.CustomPrint, 
        'Units': App.Constants.CropUnits.Centimeters, 
        'PrintWidth': 13, 
        'PrintHeight': 9
        }

def Do(Environment):
    App.Do( Environment, 'Crop',         Preset_Crop())

