-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSaveImageNode.py
95 lines (79 loc) · 3.82 KB
/
SaveImageNode.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import os
import json
import numpy as np
from PIL import Image
from PIL.PngImagePlugin import PngInfo
from comfy.cli_args import args
import folder_paths
class SaveImageNode:
def __init__(self):
self.output_dir = folder_paths.get_output_directory()
self.type = "output"
self.prefix_append = ""
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"images": ("IMAGE",),
"filename_number_padding": ("STRING", {"default": "1"}), # Padding como entrada de texto
"filename_prefix": ("STRING", {"default": "image"}),
"filename_delimiter": ("STRING", {"default": "_"}), # Delimitador para el nombre de archivo
"save_path": ("STRING", {"default": "images/output"}), # Ruta de guardado como entrada
},
"hidden": {
"prompt": "PROMPT",
"extra_pnginfo": "EXTRA_PNGINFO",
},
}
FUNCTION = "save_images"
OUTPUT_NODE = True
RETURN_TYPES = ("NONE",)
RETURN_NAMES = ("saved",)
CATEGORY = "image"
def generate_unique_filename(self, save_path, filename_prefix, padding_length, filename_delimiter, starting_number):
"""Generar un nombre de archivo único que no sobrescriba imágenes existentes."""
counter = starting_number # Comienza desde el número especificado
while True:
# Generar el número del archivo con padding
number_str = str(counter).zfill(padding_length) # Aplicar padding
file = f"{filename_prefix}{filename_delimiter}{number_str}_.png" # Nombre del archivo
full_path = os.path.join(save_path, file) # Ruta completa del archivo
# Verificar si el archivo ya existe en la carpeta designada
if not os.path.isfile(full_path): # Verifica solo en la carpeta
return full_path # Retornar el nombre único si no existe
counter += 1 # Incrementar el contador y continuar buscando
def save_images(self, images, filename_number_padding="1", filename_prefix="image",
filename_delimiter="_", save_path="", prompt=None, extra_pnginfo=None):
# Combine self.output_dir with save_path
full_save_path = os.path.join(self.output_dir, save_path.strip())
# Convertir el padding de cadena a entero
try:
padding_length = int(filename_number_padding)
except ValueError:
padding_length = 1
# Crear la carpeta si no existe
if not os.path.exists(full_save_path):
os.makedirs(full_save_path)
for image in images:
i = 255. * image.cpu().numpy()
img = Image.fromarray(np.clip(i, 0, 255).astype(np.uint8))
metadata = None
if not args.disable_metadata:
metadata = PngInfo()
if prompt is not None:
metadata.add_text("prompt", json.dumps(prompt))
if extra_pnginfo is not None:
for x in extra_pnginfo:
metadata.add_text(x, json.dumps(extra_pnginfo[x]))
# Generar un nombre de archivo único, comenzando desde 1
full_path = self.generate_unique_filename(full_save_path, filename_prefix, padding_length, filename_delimiter, starting_number=1)
img.save("/home/vertex/Downloads/test.png", pnginfo=metadata, compress_level=4)
return (None, )
# Un diccionario que contiene todos los nodos que deseas exportar con sus nombres
NODE_CLASS_MAPPINGS = {
"SaveImageNode": SaveImageNode
}
# Un diccionario que contiene los títulos amigables/humanos para los nodos
NODE_DISPLAY_NAME_MAPPINGS = {
"SaveImageNode": "Save Image Node"
}