From 7069f6a92fb58304487224ff01cb7e6a4ed20922 Mon Sep 17 00:00:00 2001 From: Yousef Rafat <81116377+yousef-rafat@users.noreply.github.com> Date: Wed, 29 Apr 2026 22:36:01 +0300 Subject: [PATCH] transpose error for exr --- comfy_extras/nodes_images.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/comfy_extras/nodes_images.py b/comfy_extras/nodes_images.py index bc1ee6525..5e7855e9a 100644 --- a/comfy_extras/nodes_images.py +++ b/comfy_extras/nodes_images.py @@ -1116,7 +1116,6 @@ class SaveImageAdvanced(IO.ComfyNode): if is_planar: if av_fmt.startswith('gbr'): img_np = img_np[:, :, [1, 2, 0, 3]] if has_alpha else img_np[:, :, [1, 2, 0]] - img_np = img_np.transpose(2, 0, 1) try: frame = av.VideoFrame.from_ndarray(img_np, format=av_fmt) @@ -1194,7 +1193,6 @@ class ImagesExtension(ComfyExtension): ImageScaleToMaxDimension, SplitImageToTileList, ImageMergeTileList, - SaveImageAdvanced ]