Recraft Creative Upscale 节点使用 Recraft 的 API 增加图像分辨率,还创造性地增强和丰富图像细节。

参数说明

基本参数

参数类型默认值说明
image图像-需要创意放大的输入图像

输出

输出类型说明
IMAGE图像创意放大后的高分辨率图像

源码参考

[节点源码 (更新于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"