Skip to main content

ResizeAndPadImage

image/transform
ResizeAndPadImage

Example

JSON Example
{
  "class_type": "ResizeAndPadImage",
  "inputs": {
    "image": [
      "node_id",
      0
    ],
    "target_width": 512,
    "target_height": 512,
    "padding_color": "white",
    "interpolation": "area"
  }
}

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

Inputs

NameTypeStatusConstraintsDefault
imageIMAGErequired--
target_widthINTrequiredmin: 1, max: 16384, step: 1512
target_heightINTrequiredmin: 1, max: 16384, step: 1512
padding_colorENUM
2 options
  • white
  • black
required--
interpolationENUM
5 options
  • area
  • bicubic
  • nearest-exact
  • bilinear
  • lanczos
required--

Outputs

IndexNameTypeIs ListConnection Reference
0IMAGEIMAGENo["{node_id}", 0]
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 ResizeAndPadImage 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]
Was this page helpful?