Resizing an Image - Paint Shop Pro 9
Transparent Image
Screen Capture
Scripts
def Do(Environment):
App.Do( Environment, 'Resize', {
'AspectRatio': 1, change to 'AspectRatio': None,
'CurrentDimensionUnits': App.Constants.UnitsOfMeasure.Pixels,
'CurrentResolutionUnits': App.Constants.ResolutionUnits.PixelsPerIn,
'Height': 350, turn one of these to None—height or width…
'MaintainAspectRatio': App.Constants.Boolean.true, change to false(optional if you don’t want to maintain aspect ratio)
'Resample': App.Constants.Boolean.true,
'ResampleType': App.Constants.ResampleType.SmartSize,
'ResizeAllLayers': App.Constants.Boolean.true,
'Resolution': 100,
'Width': 350, turn one of these to None—height or width…
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'DialogPlacement': {
'ShowMaximized': App.Constants.Boolean.false,
'Rect': ((234,30),332,508)
},