14 lines
352 B
Python
14 lines
352 B
Python
from export_psd import create_psd_from_images
|
|
|
|
if __name__ == "__main__":
|
|
image_list = [
|
|
'../images/background.jpg',
|
|
'../images/nankai.jpg',
|
|
'../images/aaai.png',
|
|
# Add more images as needed
|
|
]
|
|
|
|
create_psd_from_images(
|
|
image_paths=image_list,
|
|
output_path='../outputs/combined_output.psd'
|
|
) |