Skip to main content
ComfyUI Native Recraft Creative Upscale Node The Recraft Creative Upscale node uses Recraft’s API to increase image resolution while creatively enhancing and enriching image details.

Parameters

Basic Parameters

ParameterTypeDefaultDescription
imageimage-Input image to be creatively upscaled

Output

OutputTypeDescription
IMAGEimageHigh-resolution image after creative upscaling

Source Code

[Node source code (Updated on 2025-05-03)]
class RecraftCreativeUpscaleNode(RecraftCrispUpscaleNode):
    """
    Upscale image synchronously.
    Enhances a given raster image using ‘creative upscale’ tool, boosting resolution with a focus on refining small details and faces.
    """

    RETURN_TYPES = (IO.IMAGE,)
    DESCRIPTION = cleandoc(__doc__ or "")  # Handle potential None value
    FUNCTION = "api_call"
    API_NODE = True
    CATEGORY = "api node/image/Recraft"

    RECRAFT_PATH = "/proxy/recraft/images/creativeUpscale"
I