Adobe 23101764 Scripting Guide - Page 49

Applying a MotionBlur Filter

Page 49 highlights

Scripting Photoshop 3 Advanced Scripting Applying a MotionBlur Filter Similar code can be used to blur the text in a document. Again create an array of points to designate an area of the document. This time the width is defined as the distance from the middle of the document to the far right side. The vertical positioning remains the same. Select the right side of the document and apply a motion filter with parameters that define the angle and radius of the blur. Then remove the selection so that the "marching ants" disappear from the dialog. To finish up, set application preferences back to their original values. selRegion = Array(Array(docWidthInPixels / 2, 0), Array(docWidthInPixels, 0), Array(docWidthInPixels, docHeightInPixels), Array(docWidthInPixels / 2, docHeightInPixels), Array(docWidthInPixels / 2, 0)); docRef.selection.select(selRegion); newTextLayer.applyMotionBlur(45, 5); docRef.selection.deselect(); app.preferences.rulerUnits = startRulerUnits; app.preferences.typeUnits = startTypeUnits; app.displayDialogs = startDisplayDialogs; This code snippet removes the "marching ants" and blurs the text on the right side of the document. Photoshop CS Scripting Guide 45

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105

Photoshop CS Scripting Guide
45
Scripting Photoshop
Advanced Scripting
3
Applying a MotionBlur Filter
Similar code can be used to blur the text in a document. Again create an array of points to
designate an area of the document. This time the width is de
ned as the distance from the
middle of the document to the far right side. The vertical positioning remains the same.
Select the right side of the document and apply a motion
lter with parameters that de
ne the
angle and radius of the blur. Then remove the selection so that the "marching ants" disappear
from the dialog.
To
nish up, set application preferences back to their original values.
selRegion = Array(Array(docWidthInPixels / 2, 0),
Array(docWidthInPixels, 0),
Array(docWidthInPixels, docHeightInPixels),
Array(docWidthInPixels / 2, docHeightInPixels),
Array(docWidthInPixels / 2, 0));
docRef.selection.select(selRegion);
newTextLayer.applyMotionBlur(45, 5);
docRef.selection.deselect();
app.preferences.rulerUnits = startRulerUnits;
app.preferences.typeUnits = startTypeUnits;
app.displayDialogs = startDisplayDialogs;
This code snippet removes the "marching ants" and
blurs
the text on the right side of the
document.