Created
March 22, 2019 14:04
-
-
Save web-crab/12d699d00996887dcd82f2dd8807f815 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var names = ['John Doe']; | |
for (var i = 0; i < names.length; i++) { | |
app.activeDocument.activeLayer.textItem.contents = names[i]; | |
app.activeDocument.saveAs( | |
new File('~/Desktop/' + names[i] + '.tif'), 10), | |
new TiffSaveOptions(), | |
true | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment