bluePencilUtil [-adjustBrushSize boolean] [-adjustOpacity boolean] [-arrowOptions int int] [-arrowTool] [-brushOptions int int int int int] [-brushTool] [-draw] [-drawColor int int int] [-ellipseOptions int int] [-ellipseTool] [-eraserOptions int int int int int] [-eraserTool] [-ghostColorNext int int int] [-ghostColorOverride boolean] [-ghostColorPrevious int int int] [-ghostNext boolean] [-ghostNextCount int] [-ghostPrevious boolean] [-ghostPreviousCount int] [-layerManager] [-layerProperties] [-lineOptions int int] [-lineTool] [-pencilOptions int int int int] [-pencilTool] [-rectangleOptions int int] [-rectangleTool] [-refreshLayerManager] [-refreshTimelineDisplay] [-resetTool] [-textFontFamily string] [-textOptions int int string] [-textTool] [-timelineFrameDisplay int] [-transform]
bluePencilUtil は、取り消し可能、照会可能、および編集可能です。
Blue Pencil ツールのユーティリティ コマンド。なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
|---|---|---|---|---|
-adjustBrushSize(-abs)
|
boolean
|
|
||
|
||||
-adjustOpacity(-aop)
|
boolean
|
|
||
|
||||
-arrowOptions(-ao)
|
int int
|
|
||
|
||||
-arrowTool(-at)
|
|
|
||
|
||||
-brushOptions(-bo)
|
int int int int int
|
|
||
|
||||
-brushTool(-bt)
|
|
|
||
|
||||
-draw(-d)
|
|
|
||
|
||||
-drawColor(-dc)
|
int int int
|
|
||
|
||||
-ellipseOptions(-elo)
|
int int
|
|
||
|
||||
-ellipseTool(-elt)
|
|
|
||
|
||||
-eraserOptions(-eo)
|
int int int int int
|
|
||
|
||||
-eraserTool(-et)
|
|
|
||
|
||||
-ghostColorNext(-gcn)
|
int int int
|
|
||
|
||||
-ghostColorOverride(-gco)
|
boolean
|
|
||
|
||||
-ghostColorPrevious(-gcp)
|
int int int
|
|
||
|
||||
-ghostNext(-gn)
|
boolean
|
|
||
|
||||
-ghostNextCount(-gnc)
|
int
|
|
||
|
||||
-ghostPrevious(-gp)
|
boolean
|
|
||
|
||||
-ghostPreviousCount(-gpc)
|
int
|
|
||
|
||||
-layerManager(-lm)
|
|
|
||
|
||||
-layerProperties(-lp)
|
|
|
||
|
||||
-lineOptions(-lo)
|
int int
|
|
||
|
||||
-lineTool(-lt)
|
|
|
||
|
||||
-pencilOptions(-po)
|
int int int int
|
|
||
|
||||
-pencilTool(-pt)
|
|
|
||
|
||||
-rectangleOptions(-ro)
|
int int
|
|
||
|
||||
-rectangleTool(-rt)
|
|
|
||
|
||||
-refreshLayerManager(-rlm)
|
|
|
||
|
||||
-refreshTimelineDisplay(-rtd)
|
|
|
||
|
||||
-resetTool(-r)
|
|
|
||
|
||||
-textFontFamily(-tff)
|
string
|
|
||
|
||||
-textOptions(-txo)
|
int int string
|
|
||
|
||||
-textTool(-tt)
|
|
|
||
|
||||
-timelineFrameDisplay(-tfd)
|
int
|
|
||
|
||||
-transform(-t)
|
|
|
||
|
||||
// Activate the drawing tool context. bluePencilUtil -d; // Activate the transform tool context. bluePencilUtil -transform; // Set the draw color to red. bluePencilUtil -drawColor 255 0 0; // Activate tool. bluePencilUtil -pencilTool; bluePencilUtil -brushTool; bluePencilUtil -eraserTool; bluePencilUtil -lineTool; bluePencilUtil -arrowTool; bluePencilUtil -ellipseTool; bluePencilUtil -rectangleTool; bluePencilUtil -textTool; // Start adjusting the brush size. bluePencilUtil -adjustBrushSize 1; // Stop adjusting the brush size. bluePencilUtil -adjustBrushSize 0; // Adjust opacity. bluePencilUtil -adjustOpacity 1; // Set pencil options size: 10, opacity 25, pressure size: 35, pressure opacity: 45. bluePencilUtil -pencilOptions 10 25 35 45; // Set pencil options size: 10, opacity 25, hardness: 30, //pressure size: 35, pressure opacity: 45. bluePencilUtil -brushOptions 10 25 30 35 45; bluePencilUtil -eraserOptions 10 25 30 35 45; bluePencilUtil -lineOptions 10 25; bluePencilUtil -arrowOptions 10 25; bluePencilUtil -ellipseOptions 10 25; bluePencilUtil -rectangleOptions 10 25; // Set the text options, size: 12, opacity: 25, font: Arial bluePencilUtil -textOptions 12 25 Arial; bluePencilUtil -textFontFamily Arial; // Activate ghosting bluePencilUtil -ghostPrevious 1; bluePencilUtil -ghostNext 1; // Set the number of ghosts. bluePencilUtil -ghostPreviousCount 5; bluePencilUtil -ghostNextCount 5; // Set the ghost color. bluePencilUtil -ghostColorOverride 1; bluePencilUtil -ghostColorPrevious 0 0 255; bluePencilUtil -ghostColorNext 255 255 0; // Refresh timeline. bluePencilUtil -refreshTimelineDisplay; // Show layer manager. bluePencilUtil -layerManager; // Refresh layer manager. bluePencilUtil -refreshLayerManager; // Show layer properties. bluePencilUtil -layerProperties; // Reset blue pencil tool settings. bluePencilUtil -resetTool;