Mam słowo w warstwie tekstowej w Photoshopie. Chcę, aby każda postać była na osobnej warstwie, jak mogę to zrobić?
Mam słowo w warstwie tekstowej w Photoshopie. Chcę, aby każda postać była na osobnej warstwie, jak mogę to zrobić?
Odpowiedzi:
Chyba że zrywasz „antydyskryminację”, jest to szybsza droga.
Można to zrobić za pomocą funkcji skryptowych.
EDYCJA : Zaktualizowałem moją odpowiedź poniżej, próbując i testując.
Zawartość splitText.jsx
// enable double clicking from the Macintosh Finder or the Windows Explorer
#target photoshop
// in case we double clicked the file
app.bringToFront();
// debug level: 0-2 (0:disable, 1:break on error, 2:break at beginning)
// $.level = 0;
// debugger; // launch debugger on next line
var strtRulerUnits = app.preferences.rulerUnits;
var strtTypeUnits = app.preferences.typeUnits;
app.preferences.rulerUnits = Units.PIXELS;
app.preferences.typeUnits = TypeUnits.POINTS;
var thisDocument = app.activeDocument;
// USE THIS LINE TO GRAB TEXT FROM EXISTING LAYER
var theOriginalTextLayer = thisDocument.artLayers.getByName("NAME-OF-LAYER");
var theTextToSplit = theOriginalTextLayer.textItem.contents;
// OR USE THIS LINE TO DEFINE YOUR OWN
// var theTextToSplit = "Hello";
// suppress all dialogs
app.displayDialogs = DialogModes.NO;
// the color of the text as a numerical rgb value
var textColor = new SolidColor;
textColor.rgb.red = 0;
textColor.rgb.green = 0;
textColor.rgb.blue = 0;
var fontSize = 120; // font size in points
var textBaseline = 480; // the vertical distance in pixels between the top-left corner of the document and the bottom-left corner of the text-box
for(a=0; a<theTextToSplit.length; a++){
// this loop will go through each character
var newTextLayer = thisDocument.artLayers.add(); // create new photoshop layer
newTextLayer.kind = LayerKind.TEXT; // set the layer kind to be text
// newTextLayer.name = textInLayer.charAt(a);
var theTextBox = newTextLayer.textItem; // edit the text
theTextBox.font = "Arial"; // set font
theTextBox.contents = theTextToSplit.charAt(a); // Put each character in the text
theTextBox.size = fontSize; // set font size
var textPosition = a*(fontSize*0.7);
theTextBox.position = Array(textPosition, textBaseline); // apply the bottom-left corner position for each character
theTextBox.color = textColor;
};
/* Reset */
app.preferences.rulerUnits = strtRulerUnits;
app.preferences.typeUnits = strtTypeUnits;
docRef = null;
textColor = null;
newTextLayer = null;
Następnie przesuń warstwy tekstowe o tyłku, który chcesz
Bardzo dziękuję Adamowi Elsodaneyowi za skrypt, jest niesamowity - jeśli jednak jesteś taki jak ja i chcesz, aby skrypt rozerwał słowa, a nie znaki, musisz go zmodyfikować.
Oto ten sam skrypt do dzielenia słów:
// enable double clicking from the Macintosh Finder or the Windows Explorer
#target photoshop
// in case we double clicked the file
app.bringToFront();
// debug level: 0-2 (0:disable, 1:break on error, 2:break at beginning)
// $.level = 0;
// debugger; // launch debugger on next line
var strtRulerUnits = app.preferences.rulerUnits;
var strtTypeUnits = app.preferences.typeUnits;
app.preferences.rulerUnits = Units.PIXELS;
app.preferences.typeUnits = TypeUnits.POINTS;
var thisDocument = app.activeDocument;
// USE THIS LINE TO GRAB TEXT FROM EXISTING LAYER
var theOriginalTextLayer = thisDocument.activeLayer;
var theTextToSplit = theOriginalTextLayer.textItem.contents;
// OR USE THIS LINE TO DEFINE YOUR OWN
// var theTextToSplit = "Hello";
// suppress all dialogs
app.displayDialogs = DialogModes.NO;
// the color of the text as a numerical rgb value
var textColor = new SolidColor;
textColor.rgb.red = 0;
textColor.rgb.green = 0;
textColor.rgb.blue = 0;
var fontSize = 120; // font size in points
var textBaseline = 480; // the vertical distance in pixels between the top-left corner of the document and the bottom-left corner of the text-box
var words = theTextToSplit.split(" ");
for(a=0; a < words.length; a++){
// this loop will go through each character
var newTextLayer = thisDocument.artLayers.add(); // create new photoshop layer
newTextLayer.kind = LayerKind.TEXT; // set the layer kind to be text
var theTextBox = newTextLayer.textItem; // edit the text
theTextBox.font = "Arial"; // set font
theTextBox.contents = words[a]; // Put each character in the text
theTextBox.size = fontSize; // set font size
var textPosition = a*(fontSize*0.7);
theTextBox.position = Array(textPosition, textBaseline); // apply the bottom-left corner position for each character
theTextBox.color = textColor;
};
/* Reset */
app.preferences.rulerUnits = strtRulerUnits;
app.preferences.typeUnits = strtTypeUnits;
docRef = null;
textColor = null;
newTextLayer = null;
I tylko dla wyjaśnienia (ponieważ nie wiedziałem, musiałem google go)
.jsx
)textlayer
i że ten plik jest otwarty w Photoshopie.Edycja: W przypadku niektórych rezonów podwójne kliknięcie nie zawsze działa, a jeśli nie, w Photoshp przejdź do Plik> Skrypty> Przeglądaj i kliknij dwukrotnie tam plik. Zacznie działać.
var theOriginalTextLayer = thisDocument.artLayers.getByName("textlayer");
się var theOriginalTextLayer = thisDocument.activeLayer;
skrypt będzie działać na wybranej warstwie tekstowej: nie ma potrzeby, aby zmienić jego nazwę natextlayer
Po prostu dam swój grosz. Nie określiłeś, czy potrzebujesz nowych warstw jako edytowalnego tekstu, czy tylko warstw rasteryzowanych, w tym drugim przypadku możesz:
Ponownie, zrób to tylko wtedy, gdy masz rasteryzowane warstwy. Jeśli potrzebujesz warstw tekstowych, skorzystaj z odpowiedzi Lauren Ipsum, ponieważ jest to prawdopodobnie najszybszy sposób.