Corel PaintShop Pro X4 - Custom Crop Tool Preset
I've been wondering if this is possible for some time - I worked it out last night.
My PC screen is set to display in 16:9 format, therefore I crop a lot of my images to either 3:2 for printing or 16:9 for desktop display. By default there is no 16:9 option in the Crop Tool.
Here's how to add 16:9 as an option:
In Windows Explorer, navigate to:
...Program Files (x86) > Corel > Corel PaintShop Pro X4 > Languages > EN > Presets > Metric
(Your navigation path might be a little different due to country and installation preferences, but you should get the gist)
There will be a number of * PspScript files - open one in Windows' Notepad, it might look something like this:
from PSPApp import *
def ScriptProperties():
return {
'Author': u'Corel Corporation',
'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
'Description': '',
'Host': 'Paint Shop Pro',
'Host Version': '8.00'
}
def Preset_Crop():
return {
'CropRect': ((0,0),2125,1535),
'Mode': App.Constants.CropMode.CustomPrint,
'Units': App.Constants.CropUnits.Centimeters,
'PrintWidth': 18,
'PrintHeight': 13
}
def Do(Environment):
App.Do( Environment, 'Crop', Preset_Crop())
Amend the "cropRect" line to read: 'CropRect': ((0,0),1600,900),
Amend the Printwidth line to read: 'PrintWidth': 16
Amend the PrintHeight line to read: 'PrintHeight': 9
Then, from Notepad, File > Save As and give it a pertinent filename, perhaps; Preset_Crop_16 x 9 cm.PspScript
Start Corel PaintShop Pro X4 and the new crop preset should now be available in the drop-down list.
Lawrence


