我在Photoshop中有6个组,每个组中包含多个图层。我希望在每个组中打开/关闭一个图层,以创建图像的每种可能组合。
有人可以指出我正确的方向吗?
我从未在Photoshop中编写脚本,而是尝试自行解决。
最佳答案
我对CS5脚本编写还很陌生,但是我想我可以解释一下它是如何工作的。代码示例可能不是最有效的方法,但是可以解决问题。
一组图层或单个图层本身之间存在很大差异。
所有图层和组均以DOM格式排序。要获得根目录,可以使用全局实例app
来获取 Activity 文档:app.activeDocument
。
麻烦的是,对于单个图层和组,有两个单独的数组。
要获取单层数组,请为组使用app.activeDocument.layers
和app.activeDocument.layerSets
。
要深入了解层次结构,请使用layerSets数组进行迭代。
例如,让我们假设下面的类目:
-Border
+Icons
+Left
-Star
-Home
+Right
-Add
-Remove
这里
Border
,Star
,Home
,Add
和Remove
都是单层,而Icons
,Left
和Right
是Groups。要打开
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;
要显示Border图层,您需要改用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;
}
..最后,我编写了此函数来隐藏用户指定的根目录下的所有组和/或图层。
/******************************************
// 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);
我希望这不仅对我有用,对其他人也有用:)
关于photoshop - 在Photoshop脚本中打开和关闭多层,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9399478/