我有一个多语言网站,需要自动化从 csv 源更新 psd 文件中的文本层的过程。
我知道由于宽度的变化,psp 中可能会出现故障,但无论如何,将文本放在文档中会有很大帮助。
我有哪些选择?
编辑:
Murmelschlurmel 有一个可行的解决方案。这是 Adobe 文档的链接。
csv 文件的格式不是很好:每个变量都需要一列。我希望每个变量都有一行。
它适用于变音符号(ä、ö 等)
编辑1:
另一种解决方案是使用 com 自动化 Photoshop。如果您有几个需要更改文本的模板(按钮),那就太好了。这是我在 python 中的脚本,可能会让你开始。
您需要一个包含以下列的 excel 文件:TemplateFileName, TargetFileName, TargetFormat, Text (ie template.psd, button1, gif, NiceButton)。不使用工作表的第一行。psp模板应该只有1个textlayer,不能有layergroups。
import win32com.client
import xlrd
spreadsheet = xlrd.open_workbook("text_buttons.xls")
sheet = spreadsheet.sheet_by_index(0)
psApp = win32com.client.Dispatch("Photoshop.Application")
jpgSaveOptions = win32com.client.Dispatch("Photoshop.JPEGSaveOptions")
jpgSaveOptions.EmbedColorProfile = True
jpgSaveOptions.FormatOptions = 1
jpgSaveOptions.Matte = 1
jpgSaveOptions.Quality = 1
gifSaveOptions = win32com.client.Dispatch("Photoshop.GIFSaveOptions")
for rowIndex in range(sheet.nrows):
if(rowIndex > 0):
template = sheet.row(rowIndex)[0].value
targetFile = sheet.row(rowIndex)[1].value
targetFileFormat = sheet.row(rowIndex)[2].value
textTranslated = sheet.row(rowIndex)[3].value
psApp.Open(r"D:\Design\Produktion\%s" % template )
doc = psApp.Application.ActiveDocument
for layer in doc.Layers:
if (layer.Kind == 2):
layer.TextItem.Contents = textTranslated
if(targetFileFormat == "gif"):
doc.SaveAs(r"D:\Design\Produktion\de\%s" % targetFile, gifSaveOptions, True, 2)
if(targetFileFormat == "jpg"):
doc.SaveAs(r"D:\Design\Produktion\de\%s" % targetFile, jpgSaveOptions, True, 2)