mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
## Features ### Open * Now returns the activeDocument after opening the file. ### JSLayer() * Removed semicolon from output. ### Document * Added FullName() which returns path to the .psd file. * Changed Filename() to DumpFile(), as Filename was misleading. * Dump function now saves the file as well, to help reduce the frequency of de-syncs. * Dump function now saves json files alongside the .psds instead of in a separate data folder- encountered issues when using the package as a module in go 1.11beta2. * Added Save() ## Testing * Added TestDocument_Save * Added TestDocument_Dump ## Misc. * Renamed pkgpath to pkgPath, to better fit go's standards. ## Fixes * DoAction now runs correctly.
22 lines
684 B
JavaScript
22 lines
684 B
JavaScript
#include lib.js
|
|
var stdout = newFile(arguments[0]);
|
|
var doc = app.activeDocument;
|
|
stdout.writeln(('{"Name": "'+doc.name+'", "FullName": "'+doc.fullName+'", "Height":'+doc.height+
|
|
', "Width":'+doc.width+', "ArtLayers": [').replace(/ px/g, ""));
|
|
|
|
stdout.writeln(layers(doc.artLayers))
|
|
stdout.writeln('], "LayerSets": [');
|
|
function lyrSets(sets, nm) {
|
|
if (typeof sets === 'undefined')
|
|
return;
|
|
for (var i = 0; i < sets.length; i++) {
|
|
var set = sets[i];
|
|
var name = nm + set.name + "/";
|
|
stdout.write('{"Name": "' + set.name + '", "Visible":'+ set.visible +'}');
|
|
if (i+1 != sets.length)
|
|
stdout.write(',');
|
|
}
|
|
}
|
|
lyrSets(doc.layerSets)
|
|
stdout.write(']}');
|
|
stdout.close(); |