Skip to main content

🔧 Image Resize

essentials/image manipulation
ImageResize+

Example

JSON Example
{
  "class_type": "ImageResize+",
  "inputs": {
    "image": [
      "node_id",
      0
    ],
    "width": 512,
    "height": 512,
    "interpolation": "nearest",
    "method": "stretch",
    "condition": "always",
    "multiple_of": 0
  }
}

This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.

Inputs

NameTypeStatusConstraintsDefault
imageIMAGErequired--
widthINTrequiredmin: 0, max: 16384, step: 1512
heightINTrequiredmin: 0, max: 16384, step: 1512
interpolationENUM
6 options
  • nearest
  • bilinear
  • bicubic
  • area
  • nearest-exact
  • lanczos
required--
methodENUM
4 options
  • stretch
  • keep proportion
  • fill / crop
  • pad
required--
conditionENUM
5 options
  • always
  • downscale if bigger
  • upscale if smaller
  • if bigger area
  • if smaller area
required--
multiple_ofINTrequiredmin: 0, max: 512, step: 10

Outputs

IndexNameTypeIs ListConnection Reference
0IMAGEIMAGENo["{node_id}", 0]
1widthINTNo["{node_id}", 1]
2heightINTNo["{node_id}", 2]
How to connect to these outputs

To connect another node's input to an output from this node, use the connection reference format:

["node_id", output_index]

Where node_id is the ID of this ImageResize+ node in your workflow, and output_index is the index from the table above.

Example

If this node has ID "5" in your workflow:

  • IMAGE (IMAGE): ["5", 0]
  • width (INT): ["5", 1]
  • height (INT): ["5", 2]
Was this page helpful?