Nodes Browser
ComfyDeploy: How ComfyUI-HigherBitDepthSaveImage works in ComfyUI?
What is ComfyUI-HigherBitDepthSaveImage?
A comfyui node that provides save image with higher bit depth.
How to install it in ComfyDeploy?
Head over to the machine page
- Click on the "Create a new machine" button
- Select the
Edit
build steps - Add a new step -> Custom Node
- Search for
ComfyUI-HigherBitDepthSaveImage
and select it - Close the build step dialig and then click on the "Save" button to rebuild the machine
Higher Bit Density SaveImage Node
This is a ComfyUI node that allows you to save images with a higher bit depth.
Installation
- Download the
save_image_node.py
file. - Place the file in the
custom_nodes
directory of your ComfyUI installation.
Usage
- Add the
Save Image Higher Bit Depth
node to your graph. - Connect the image you want to save to the
IMAGE
input of the node. (Can be used in combination with other nodes that output images, likeSaveImage
) - Set the
filename_prefix
to the desired prefix for the filename of the image you want to save. - Set the
bit_depth
to the bit depth of the image you want to save. 4.1 For 8bits (8-bit per channel - 24bit RGB) images, setbit_depth
to8
. 4.2 For 16bits (16-bit per channel - 48bit RGB) images, setbit_depth
to16
. 4.3 For 32bits (32-bit per channel - 96bit RGB) images, setbit_depth
to32
. - Set the
format
to the format of the image you want to save. Can bePNG
,TIFF
, orJPEG
. Default isPNG
.
Notes
- The
format
can bePNG
,TIFF
, orJPEG
. - The
filename_prefix
is the prefix of the filename of the image you want to save. - The
bit_depth
is the bit depth of the image you want to save. - For 32 bit images, only TIFF is supported, and will be automatically used if selected.