Image not shown #7273
-
Why this simple code does not show any image? I was inspecting other nodes that do the same and it seems to me that what the code has is all it needs to display the image on the input point? Or did I miss something?
|
Beta Was this translation helpful? Give feedback.
Answered by
christian-byrne
Mar 17, 2025
Replies: 1 comment 8 replies
-
You are reading the - results = PreviewImage().save_images(image_batch, prompt=None, extra_pnginfo=None)["ui"]
+ results = PreviewImage().save_images(image_batch, prompt=None, extra_pnginfo=None)["ui"]["images"]
return {
"ui": { "images": results }
} |
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
fafayqa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are reading the
"ui"
field then putting it in"images"
field of your output.