Desarrollador me pidió casi el mismo pensar como usted necesita. Se me ocurrió la edición de la secuencia de comandos simple, para exportar las propiedades de la capa (texto, nombre de la fuente, el tamaño de la fuente, el color de la fuente) que usted necesita cuando se desarrolla, a un solo archivo txt (debe trabajar en la máquina de Windows).
Sólo hay que guardar esto como “ExportTexts.js” y ponerlo en Adobe Photoshop > Presets > Scripts.
Después, ejecute (o reinicie) Photoshop y ejecute el script (File -> Scripts -> ExportTexts). Asegúrese también de que ha desagrupado todas las capas antes de hacer esto. El archivo exportado debe estar en el mismo directorio que el archivo psd.
if (documents.length > 0)
{
var docRef = activeDocument;
CurrentFolder = activeDocument.path;
var outputFile = new File(CurrentFolder + "/" + activeDocument.name + "fonts.txt" );
outputFile.open("w");
for (var i = docRef.layers.length-1 ; i >=0 ; i--)
{
docRef.activeLa`enter preformatted text here`yer = docRef.layers[i]
if (docRef.activeLayer.kind == LayerKind.TEXT)
{
outputFile.write(
docRef.activeLayer.textItem.contents + "\n" +
docRef.activeLayer.textItem.font +"," +
docRef.activeLayer.textItem.size +"," +
docRef.activeLayer.textItem.color.rgb.hexValue + "\n\n\n");
}
}
outputFile.close();
alert("Finished");
}
else
{
alert("You must have at least one open document to run this script!");
}
docRef = null