mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-21 22:47:30 +08:00
..
This commit is contained in:
parent
4b51c8f774
commit
1e8fc2f1a8
@ -971,7 +971,7 @@ class SaveImageAdvanced(IO.ComfyNode):
|
|||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
IO.Combo.Input(
|
IO.Combo.Input(
|
||||||
"interept_as",
|
"interpret_as",
|
||||||
options=["sRGB", "Linear", "Raw/Data"],
|
options=["sRGB", "Linear", "Raw/Data"],
|
||||||
default="sRGB",
|
default="sRGB",
|
||||||
advanced=True,
|
advanced=True,
|
||||||
@ -988,7 +988,7 @@ class SaveImageAdvanced(IO.ComfyNode):
|
|||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
IO.Combo.Input(
|
IO.Combo.Input(
|
||||||
"interept_as",
|
"interpret_as",
|
||||||
options=["sRGB", "Raw/Data"],
|
options=["sRGB", "Raw/Data"],
|
||||||
default="sRGB",
|
default="sRGB",
|
||||||
advanced=True,
|
advanced=True,
|
||||||
@ -1005,7 +1005,7 @@ class SaveImageAdvanced(IO.ComfyNode):
|
|||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
IO.Combo.Input(
|
IO.Combo.Input(
|
||||||
"interept_as",
|
"interpret_as",
|
||||||
options=["Linear", "Raw/Data"],
|
options=["Linear", "Raw/Data"],
|
||||||
default="Linear",
|
default="Linear",
|
||||||
advanced=True,
|
advanced=True,
|
||||||
@ -1032,7 +1032,7 @@ class SaveImageAdvanced(IO.ComfyNode):
|
|||||||
# get widget values from dynamic combo
|
# get widget values from dynamic combo
|
||||||
file_format = format["format"]
|
file_format = format["format"]
|
||||||
bit_depth = format["bit_depth"]
|
bit_depth = format["bit_depth"]
|
||||||
interept_as = format["interept_as"]
|
interpret_as = format["interpret_as"]
|
||||||
|
|
||||||
img_tensor = image.clone()
|
img_tensor = image.clone()
|
||||||
|
|
||||||
|
|||||||
1
nodes.py
1
nodes.py
@ -2463,7 +2463,6 @@ async def init_builtin_extra_nodes():
|
|||||||
"nodes_painter.py",
|
"nodes_painter.py",
|
||||||
"nodes_curve.py",
|
"nodes_curve.py",
|
||||||
"nodes_rtdetr.py",
|
"nodes_rtdetr.py",
|
||||||
"nodes_save_advanced.py",
|
|
||||||
"nodes_frame_interpolation.py",
|
"nodes_frame_interpolation.py",
|
||||||
"nodes_sam3.py"
|
"nodes_sam3.py"
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user