Crop Image Settings (JPS)¶
Documentation¶
- Class name:
Crop Image Settings (JPS)
- Category:
JPS Nodes/Settings
- Output node:
False
The Crop Image Settings node is designed to configure the parameters for cropping images, including the position, offset, and interpolation method. It abstracts the complexity of image cropping settings, allowing for flexible and precise control over how images are cropped and prepared for further processing.
Input types¶
Required¶
source_crop_pos
- Specifies the initial position for cropping the source image. This affects the starting point of the crop and influences the final composition of the cropped image.
- Comfy dtype:
COMBO[STRING]
- Python dtype:
List[str]
source_crop_offset
- Determines the offset from the specified position for the source image crop, providing fine-tuned control over the crop's placement.
- Comfy dtype:
INT
- Python dtype:
int
support_crop_pos
- Specifies the initial position for cropping the support image, similar to 'source_crop_pos' but for an additional image or context.
- Comfy dtype:
COMBO[STRING]
- Python dtype:
List[str]
support_crop_offset
- Determines the offset from the specified position for the support image crop, allowing for precise alignment with the source image.
- Comfy dtype:
INT
- Python dtype:
int
crop_intpol
- Defines the interpolation method to be used for cropping, affecting the quality and appearance of the cropped image.
- Comfy dtype:
COMBO[STRING]
- Python dtype:
List[str]
Output types¶
cropimage_settings
- Comfy dtype:
BASIC_PIPE
- The configuration settings for cropping an image, encapsulating position, offset, and interpolation method details.
- Python dtype:
Tuple[List[str], int, List[str], int, List[str]]
- Comfy dtype:
Usage tips¶
- Infra type:
CPU
- Common nodes: unknown
Source code¶
class CropImage_Settings:
def __init__(self):
pass
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"source_crop_pos": (["center","top", "bottom", "left", "right"],),
"source_crop_offset": ("INT", { "default": 0, "min": -2048, "max": 2048, "step": 1, "display": "number" }),
"support_crop_pos": (["center","top", "bottom", "left", "right"],),
"support_crop_offset": ("INT", { "default": 0, "min": -2048, "max": 2048, "step": 1, "display": "number" }),
"crop_intpol": (["lanczos", "nearest", "bilinear", "bicubic", "area", "nearest-exact"],),
}
}
RETURN_TYPES = ("BASIC_PIPE",)
RETURN_NAMES = ("cropimage_settings",)
FUNCTION = "get_cropimage"
CATEGORY="JPS Nodes/Settings"
def get_cropimage(self, source_crop_pos, source_crop_offset, support_crop_pos, support_crop_offset, crop_intpol,):
cropimage_settings = source_crop_pos, source_crop_offset, support_crop_pos, support_crop_offset, crop_intpol
return(cropimage_settings,)