我在Photoshop中有6个组,每组包含多个图层。我希望打开/关闭每个组中的图层以创建图像的每个可能组合。
有人能指出我正确的方向吗?
我从来没有在Photoshop中编写脚本,而是试图自己解决这个问题。
答案 0 :(得分:3)
我自己对CS5脚本很陌生,但我想我可以解释它是如何工作的。代码示例可能不是最有效的方法,但它可以解决问题。
一组图层或单个图层本身之间存在很大差异。
所有图层和组都以DOM格式排序。要获得root权限,您可以使用全局实例app
来获取活动文档:app.activeDocument
。
杂乱的部分是单层和组有两个独立的阵列。
要获取单个图层数组,请为组使用app.activeDocument.layers
和app.activeDocument.layerSets
。
要深入了解hieralcy,请使用layerSets数组进行迭代。
例如,让我们假设以下的hieralcy:
-Border
+Icons
+Left
-Star
-Home
+Right
-Add
-Remove
此处Border
,Star
,Home
,Add
和Remove
都是单层,Icons
,Left
和Right
是群组。
要启用群组Left
,我们需要对Icon
群进行迭代:
Icons = app.activeDocument.layerSets.getByName("Icons");
Left = Icons.layerSets.getByName("Left");
Left.visible = true;
如果您通过单击鼠标在CS5中显示图层/组,则所有父组也将自动显示。通过脚本编写,并非如此,您还必须启用所有父项。
Icons = app.activeDocument.layerSets.getByName("Icons");
Icons.visible = true;
Left = Icons.layerSets.getByName("Left");
Left.visible = true;
要显示边框图层,您需要使用layers数组。
app.activeDocument.layers.getByName("Border").visible = true;
如果要显示“添加图层”,则同样适用。
Icons = app.activeDocument.layerSets.getByName("Icons");
Icons.visible = true;
Right = Icons.layerSets.getByName("Right");
Right.visible = true;
AddLayer = Right.layers.getByName("Add");
AddLayer.visible = true;
如果您有很多组和图层,这可能会有点混乱。我创建了一个跟随提供的路径的函数来获取结束对象。它将自行确定它是一个层还是一个组。
//******************************************
// GET BY PATH
// Author: Max Kielland
//
// Gets the LayerSet or Layer at the path's end.
// Example path "Icons/left" will return the LayerSet object "Left"
// while "Icons/left/Star" will return the Layer object "Star"
// If fSetPath is true, all the parents will be visible as well.
function GetByPath(fPath,fSetPath) {
var lGroup = null;
var lPathArray = new Array();
lPathArray = fPath.split('/');
try {
lGroup = app.activeDocument.layers.getByName(lPathArray[0]);
} catch (err) {
lGroup = app.activeDocument.layerSets.getByName(lPathArray[0]);
}
if (fSetPath)
lGroup.visible = true;
for (n=1; n<lPathArray.length; n++) {
try {
lGroup = lGroup.layerSets.getByName(lPathArray[n]);
} catch(err) {
lGroup = lGroup.layers.getByName(lPathArray[n]);
}
if (fSetPath == true)
lGroup.visible = true;
}
return lGroup;
}
...以及一个通过其路径简单设置或清除组或层的功能。
//******************************************
// SET STATUS
// Author: Max Kielland
//
// Sets the Group or Layer's visible property
// at the end of the path to fStatus.
function SetStatus(fPath, fStatus) {
Obj = GetByPath(fPath,false);
Obj.visible = fStatus;
}
..最后我编写了这个函数来隐藏用户指定root的所有组和/或图层。
/******************************************
// CLEAR GROUP
// Author: Max Kielland
//
// Clears the visible property in a single
// group/layer with the option to clear all
// its children as well (fRecurs = true).
// fLayerSet can be a layerSet object or a
// String path.
function ClearGroup(fLayerSet,fRecurs) {
var n;
var TargetGroup;
// Get LayerSet Object if reference is a string.
if (typeof fLayerSet == "string")
TargetGroup = GetByPath(fLayerSet);
else
TargetGroup = fLayerSet;
// Iterate through all LayerSets
for (n=0; n<TargetGroup.layerSets.length; n++) {
if (fRecurs == true)
ClearGroup(TargetGroup.layerSets[n],true);
else
TargetGroup.layerSets[n].visible = false;
}
// Iterate through all layers
for (n=0; n<TargetGroup.layers.length; n++) {
TargetGroup.layers[n].visible = false;
}
// Clear self
TargetGroup.visible = false;
}
以下是如何使用函数
的示例// Hide group "Icon" and its children
ClearGroup("Icons",true);
//Show the layer "Home"
GetByPath("Icons/Left/Home",true);
// To just get the object "Right"
var MyGroup = GetByPath("Icons/Right");
// Save the current document as a PNG file
app.activeDocument.saveAs(File("Scripted Document.png"),PNGSaveOptions);
我希望这对某人不仅仅对我有用:)