image_resize
Resize a single image file.
Parameters
- pathstringone of
pathorsource_key - Source image path (supports
${ctx.key}interpolation). - source_keystringone of
pathorsource_key - Context key containing either a path string, or an object entry
{ path = "..." }/{ base64 = "..." }. - output_pathstringrequired
- Destination file path for the resized image.
- widthnumber
- Target width in px. Required if
heightis omitted. - heightnumber
- Target height in px. Required if
widthis omitted. - formatstringdefault inferred from output_path or png
- Output format:
png,jpeg, orjpg. - output_keystringdefault "resized_image"
- Prefix for the generated context output keys.
If both
pathandsource_keyare provided, execution fails.
Context Output
<output_key>— output file path.<output_key>_width— output width in pixels.<output_key>_height— output height in pixels.<output_key>_format— output format ("png"or"jpeg").<output_key>_success—trueon success.
Example
local flow = Flow.new("image_resize_demo")
flow:step("resize", nodes.image_resize({
path = "examples/fixtures/ironflow-sample.png",
output_path = "outputs/sample_front_small.png",
width = 120
}))
flow:step("log", nodes.log({
message = "Resized to ${ctx.resized_image_width}x${ctx.resized_image_height}"
})):depends_on("resize")
return flow