> ## Documentation Index
> Fetch the complete documentation index at: https://docs.comfy.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Recraft Creative Upscale - ComfyUI ネイティブノードドキュメンテーション

> AI を活用して画像のディテールと解像度をクリエイティブに強化する Recraft パートナーノード

<img src="https://mintcdn.com/dripart/5003JSxULDwNImme/images/built-in-nodes/api_nodes/recraft/recraft-creative-upscale-image.jpg?fit=max&auto=format&n=5003JSxULDwNImme&q=85&s=7478834eaacd7370aad308c51518c743" alt="ComfyUI ネイティブ Recraft Creative Upscale ノード" width="1506" height="547" data-path="images/built-in-nodes/api_nodes/recraft/recraft-creative-upscale-image.jpg" />

Recraft Creative Upscale ノードは、Recraft の API を使用して画像の解像度を向上させるとともに、画像のディテールをクリエイティブに強化・豊かにします。

## パラメータ

### 基本パラメータ

| パラメータ | 型  | デフォルト | 説明                    |
| ----- | -- | ----- | --------------------- |
| image | 画像 | -     | クリエイティブにアップスケールする入力画像 |

### 出力

| 出力    | 型  | 説明                      |
| ----- | -- | ----------------------- |
| IMAGE | 画像 | クリエイティブなアップスケール後の高解像度画像 |

## ソースコード

\[ノードのソースコード（2025-05-03 更新）]

```python theme={null}
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"
```
