File size: 435 Bytes
86d4cbe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
class FramerComfyInputImageNode:
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"name": ("STRING", {"default": "image_input"}),
"image": ("IMAGE",),
},
}
RETURN_TYPES = ("IMAGE","STRING",)
FUNCTION = "get_image"
CATEGORY = "FramerComfy"
def get_image(self, name, image):
return (image,) |