如何在Photoshop填充图层中检索颜色

时间:2013-10-09 16:18:02

标签: javascript colors photoshop

我正在尝试编写一个脚本,以自动化从我们根据用途自定义的Photoshop文件中从多个填充图层中提取颜色的过程。 问题是似乎没有办法读取填充图层的指定颜色。

我已经尝试了我能想到的一切,但没有任何效果。这是我到目前为止最接近的:

this论坛中,我找到了一种阅读色板值和名称的方法。我使用了一个Scripting Listener插件来记录动作,但是当我双击Fill Layer缩略图并点击“Add to swatches”时,我得到的就是这样:

var idMk = charIDToTypeID( "Mk  " );
var desc90 = new ActionDescriptor();
var idnull = charIDToTypeID( "null" );
    var ref42 = new ActionReference();
    var idClrs = charIDToTypeID( "Clrs" );
    ref42.putClass( idClrs );
desc90.putReference( idnull, ref42 );
var idUsng = charIDToTypeID( "Usng" );
    var desc91 = new ActionDescriptor();
    var idNm = charIDToTypeID( "Nm  " );
    desc91.putString( idNm, """Swatch 3""" );
    var idClr = charIDToTypeID( "Clr " );
        var desc92 = new ActionDescriptor();
        var idRd = charIDToTypeID( "Rd  " );
        desc92.putDouble( idRd, 229.000397 );
        var idGrn = charIDToTypeID( "Grn " );
        desc92.putDouble( idGrn, 137.001801 );
        var idBl = charIDToTypeID( "Bl  " );
        desc92.putDouble( idBl, 135.997925 );
    var idRGBC = charIDToTypeID( "RGBC" );
    desc91.putObject( idClr, idRGBC, desc92 );
var idClrs = charIDToTypeID( "Clrs" );
desc90.putObject( idUsng, idClrs, desc91 );
executeAction( idMk, desc90, DialogModes.NO );

也就是说,我得到了当时正在挑选的具体值,但没有办法在循环中实现它(至少我能想到)。

另外,如果我能找到一种方法让每个填充图层颜色依次为前景色,那么我知道我可以阅读它,但我该如何到达那里?吸管似乎是一种选择,但我不能想办法让它起作用。

有什么想法吗?

1 个答案:

答案 0 :(得分:3)

我想这一直都在那里。在the forum thread mentioned above中,它说:

  

这基本上是调整图层的工作方式。有一个'调整'列表   其中通常有一个调整对象,在本例中为a   solidColorLayer。里面是颜色描述符。

我能够将每个填充图层视为一个调整图层,并从那里提取颜色数据:

//@include "C:/Program Files/Adobe/Adobe Photoshop CC/Presets/Scripts/xlib/stdlib.js"

//Create CSV file to record palette
var skinColors = File ("c:/Skinpalette.txt");
if (skinColors.exists) {
    skinColors.remove();
}    
skinColors = new File ("c:/Skinpalette.txt");

//Function to extract color from Layer
function getAdjustmentLayerColor(doc, layer) { 
    var desc = Stdlib.getLayerDescriptor(doc, layer);
    var adjs = desc.getList(cTID('Adjs'));

    var clrDesc = adjs.getObjectValue(0);
    var color= clrDesc.getObjectValue(cTID('Clr '));

    var red = Math.round(color.getDouble(cTID('Rd  ')));
    var green = Math.round(color.getDouble(cTID('Grn ')));
    var blue = Math.round(color.getDouble(cTID('Bl  ')));

    var createdSolidColor = Stdlib.createRGBColor(red, green, blue);
    var createdRGBColor = createdSolidColor.rgb;
    return createdRGBColor.hexValue;
};

//Function to cycle through layers and output to external file
function getColors(layerNode) {    
    for (var i=0; i<layerNode.length; i++) {
        getColors(layerNode[i].layerSets);
        for(var layerIndex=0; layerIndex < layerNode[i].artLayers.length; layerIndex++) {
            var layer=layerNode[i].artLayers[layerIndex];
            app.activeDocument.activeLayer = layer;

             if (layer.kind == LayerKind.SOLIDFILL) {
                skinColors.open ("a");
                skinColors.write(layer.name + " = " + getAdjustmentLayerColor(app.activeDocument, layer) + ";\n");
                skinColors.close ();
             }
        }
    }
}

getColors(app.activeDocument.layerSets);

我希望这对某些人有用,但正如我所说,我希望我早些时候注意到了!