var myLayer = app.activeDocument.layers[0]
var newPath = myLayer.pathItems.add()
newPath.setEntirePath([
[0, 0],
[0, 100],
[100, 100],
[150, 0],
[75, -50]
])
newPath.closed = true // 是否閉合
alert(newPath.length / 2.834646) // 路徑長度
alert(newPath.area / Math.pow(2.834646, 2)) // 路徑面積
// newPath.guides = true // 是否為參考線
// newPath.hidden = true // 是否為隱藏
// newPath.locked = true // 是否為鎖定
// newPath.opacity = 10 // 不透明度: 0-100之間
// alert(newPath.width) // 整體寬
// alert(newPath.height) // 整體高
var myColor = new CMYKColor() // 顏色對象
myColor.cyan = 100;
myColor.magenta = 20;
myColor.yellow = 20;
myColor.black = 0;
var myColor2 = new CMYKColor() // 顏色對象
myColor2.cyan = 0;
myColor2.magenta = 0;
myColor2.yellow = 100;
myColor2.black = 0;
newPath.fillOverprint = true // 疊印填充
newPath.filled = true // 是否填充
newPath.fillColor = myColor // 填充顏色
newPath.stroked = true // 是否描邊
newPath.strokeColor = myColor2 // 描邊顏色
newPath.strokeOverprint = true // 疊印描邊
newPath.strokeWidth = 10 // 描邊寬度
承擔因您的行為而導致的法律責任,
本站有權保留或刪除有爭議評論。
參與本評論即表明您已經閱讀并接受
上述條款。