8 lines
221 B
Python
8 lines
221 B
Python
from export_psd import export_to_psd
|
|
|
|
# 将多个图层导出为PSD文件
|
|
export_to_psd(
|
|
['background.jpg','aaai.png', 'nankai.jpg'],
|
|
'output.psd',
|
|
['background', 'middle', 'front'] # 可选的图层名称
|
|
) |