Skip to content

Commit

Permalink
Add ImageCrop node.
Browse files Browse the repository at this point in the history
  • Loading branch information
comfyanonymous committed Nov 18, 2023
1 parent 0cf4e86 commit 8a45123
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
29 changes: 29 additions & 0 deletions comfy_extras/nodes_images.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import nodes
MAX_RESOLUTION = nodes.MAX_RESOLUTION

class ImageCrop:
@classmethod
def INPUT_TYPES(s):
return {"required": { "image": ("IMAGE",),
"width": ("INT", {"default": 512, "min": 1, "max": MAX_RESOLUTION, "step": 1}),
"height": ("INT", {"default": 512, "min": 1, "max": MAX_RESOLUTION, "step": 1}),
"x": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}),
"y": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}),
}}
RETURN_TYPES = ("IMAGE",)
FUNCTION = "crop"

CATEGORY = "image/transform"

def crop(self, image, width, height, x, y):
x = min(x, image.shape[2] - 1)
y = min(y, image.shape[1] - 1)
to_x = width + x
to_y = height + y
img = image[:,y:to_y, x:to_x, :]
return (img,)


NODE_CLASS_MAPPINGS = {
"ImageCrop": ImageCrop,
}
1 change: 1 addition & 0 deletions nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1800,6 +1800,7 @@ def init_custom_nodes():
"nodes_hypertile.py",
"nodes_model_advanced.py",
"nodes_model_downscale.py",
"nodes_images.py",
]

for node_file in extras_files:
Expand Down

0 comments on commit 8a45123

Please sign in to comment.