This commit is contained in:
Yousef Rafat 2026-04-29 15:06:03 +03:00
parent 4b51c8f774
commit 1e8fc2f1a8
2 changed files with 4 additions and 5 deletions

View File

@ -971,7 +971,7 @@ class SaveImageAdvanced(IO.ComfyNode):
advanced=True,
),
IO.Combo.Input(
"interept_as",
"interpret_as",
options=["sRGB", "Linear", "Raw/Data"],
default="sRGB",
advanced=True,
@ -988,7 +988,7 @@ class SaveImageAdvanced(IO.ComfyNode):
advanced=True,
),
IO.Combo.Input(
"interept_as",
"interpret_as",
options=["sRGB", "Raw/Data"],
default="sRGB",
advanced=True,
@ -1005,7 +1005,7 @@ class SaveImageAdvanced(IO.ComfyNode):
advanced=True,
),
IO.Combo.Input(
"interept_as",
"interpret_as",
options=["Linear", "Raw/Data"],
default="Linear",
advanced=True,
@ -1032,7 +1032,7 @@ class SaveImageAdvanced(IO.ComfyNode):
# get widget values from dynamic combo
file_format = format["format"]
bit_depth = format["bit_depth"]
interept_as = format["interept_as"]
interpret_as = format["interpret_as"]
img_tensor = image.clone()

View File

@ -2463,7 +2463,6 @@ async def init_builtin_extra_nodes():
"nodes_painter.py",
"nodes_curve.py",
"nodes_rtdetr.py",
"nodes_save_advanced.py",
"nodes_frame_interpolation.py",
"nodes_sam3.py"
]