From 79cd9d09eb1c94d2a0491c4d9e926af68b44d79c Mon Sep 17 00:00:00 2001 From: Terry Jia Date: Fri, 27 Feb 2026 23:20:15 -0500 Subject: [PATCH] add OUTPUT_NODE = True to ImageCropV2 --- comfy_extras/nodes_images.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/comfy_extras/nodes_images.py b/comfy_extras/nodes_images.py index 4c57bb5cb..e90f9c1b9 100644 --- a/comfy_extras/nodes_images.py +++ b/comfy_extras/nodes_images.py @@ -65,6 +65,8 @@ class ImageCropV2(IO.ComfyNode): outputs=[IO.Image.Output()], ) + OUTPUT_NODE = True + @classmethod def execute(cls, image, crop_region) -> IO.NodeOutput: x = crop_region.get("x", 0)