This is a subproject of the
SD Prompt Reader.
It helps you extract metadata from images in any format supported by the
SD Prompt Reader and saves the images with
additional metadata to ensure compatibility with metadata detection on websites such as Civitai.
Supported Formats • Installation • Usage • Change Log • Credits
| PNG | JPEG | WEBP | TXT* | |
|---|---|---|---|---|
| A1111's webUI | ✅ | ✅ | ✅ | ✅ |
| Easy Diffusion | ✅ | ✅ | ✅ | |
| StableSwarmUI* | ✅ | ✅ | ||
| Fooocus-MRE* | ✅ | ✅ | ||
| InvokeAI | ✅ | |||
| ComfyUI* | ✅ | |||
| NovelAI | ✅ | |||
| Draw Things | ✅ | |||
| Naifu(4chan) | ✅ |
See SD Prompt Reader for details
While ZIP package is available, it is strongly recommended not to use it for installation.
Install and update via ComfyUI Manager (Recommended)
Search for SD Prompt Reader in the ComfyUI Manager and install it.
Please make sure to install the submodules along with the main repository.
cdto thecustom_nodefolder- Clone this repo
git clone --recursive https://github.com/receyuki/comfyui-prompt-reader-node.git
- Install dependencies
cd comfyui-prompt-reader-node pip install -r requirements.txt
When updating, don't forget to include the submodules along with the main repository.
git pull --recurse-submodules- The
Prompt ReaderNode works exactly the same as the standalone SD Prompt Reader. It uses the Image Data Reader from the standalone SD Prompt Reader, allowing it to support the same formats and receive updates along with the SD Prompt Reader. - Due to custom nodes and complex workflows potentially causing issues with SD Prompt Reader's ability
to read image metadata correctly, it is recommended to embed the
Prompt SaverNode within the workflow to ensure maximum compatibility. - For images containing multiple sets of parameters, such as those processed through
hires-fixorrefiner, you will need to modify theparameter_indexto select the parameters you need - For images generated by SDXL and containing multiple sets of prompts,
the
text_gwill be combined withtext_linto a single prompt - For batch processing, please use the
Batch Loadernode. - To read parameters other than the existing output, please connect the
settingsto theParameter Extractornode. MODEL_NAMEis a special output that matches the model name in the metadata with the existing models on the server according to the following priority:- Identical path, filename, and extension.
- Identical filename, and extension.
e.g.
sd_xl_base.safetensorswill be matched withSDXL\sd_xl_base.safetensors, and vice versa. - Identical filename.
e.g.
sd_xl_basewill be matched withSDXL\sd_xl_base.safetensors, and vice versa. - If a matching model cannot be found, the original name will be outputted.
-
The
Prompt SaverNode and TheParameter GeneratorNode are designed to be used together. -
The
Prompt SaverNode will write additional metadata in the A1111 format to the output images to be compatible with any tools that support the A1111 format, including SD Prompt Reader and Civitai. Due to custom nodes and complex workflows potentially causing issues with SD Prompt Reader's ability to read image metadata correctly, it is recommended to embed this node within the workflow to ensure maximum compatibility. -
Since it's not possible to directly extract metadata from
KSampler, it is necessary to use theParameter GeneratorNode to generate parameters and simultaneously output them to both thePrompt SaverNode andKSampler. -
Please refer to the following table for placeholders supported by the
filenameandpath.Placeholder %date %time %counter %seed %steps %cfg %extension %model %sampler %scheduler %quality -
%countercannot be used for thepath. This%counteris slightly different from the%counterin the built-in Saver node, it will count all image files in thepath. -
When the filename already exists, an index will be added at the end of the filename, e.g.
file.png, file_1.png, file_2.png. -
For the
date_formatandtime_format, please refer to strftime.org or www.strfti.me. -
When the
save_metadata_fileis turned on, the metadata will be saved as a TXT file with the same name alongside the image.
- Since it's not possible to directly extract metadata from
KSampler, it is necessary to use theParameter GeneratorNode to generate parameters and simultaneously output them to both thePrompt SaverNode andKSampler. - The
Parameter GeneratorNode can also be used as a control panel for complex ComfyUI workflows, just like the AP workflow. - The
model_versionandaspect_ratioare used only for calculating the optimal resolution of the selected model version under the chosen aspect ratio. The calculation method is based on the Stability AI development documentation and the StableSwarmUI source code (developed by Stability AI). refiner_startrefers to the proportion of steps completed when the refiner starts running, i.e., the proportion of base steps to total steps. This is used to calculate thestart_at_step(REFINER_START_STEP) required by the refinerKSamplerunder the selected step ratio.
- The
Batch LoaderNode is specifically designed for thePrompt ReaderNode to batch-read image files in a directory and cannot be used with other custom nodes. - For batch processing, please connect the
IMAGEoutput of theBatch LoaderNode to theimageinput of thePrompt ReaderNode. - The
pathsupports relative paths such as./input/or absolute paths likeC:/Users/receyuki/Pictures. - Both
\and/are acceptable. - You can also input a single file or a list of files into the
path, in which case theimage_load_limitandstart_indexwill not function.
- The
Parameter ExtractorNode is an extension of thePrompt ReaderNode, designed to retrieve the values of all parameters in the settings (including those parameters that thePrompt ReaderNode cannot output). e.g.Hires upscaler - Connect the
SETTINGSof thePrompt ReaderNode to thesettingsof theParameter ExtractorNode. After the first run, the parameter list will be loaded.
- Since the A1111 format cannot store
text_gandtext_lseparately, SDXL users need to use thePrompt MergerNode to combinetext_gandtext_linto a single prompt. - Since
model_name,sampler_name, andschedulerare special types that cannot be directly used by some other nodes, You can use theType ConverterNode to convert them intoSTRINGtype.
- The SD Prompt Reader node is based on ComfyUI Load Image With Metadata
- The SD Prompt Saver node is based on Comfy Image Saver & Stable Diffusion Webui
- The seed generator in the SD Parameter Generator is modified from rgthree's Comfy Nodes
- A special thanks to @alessandroperilli and his AP Workflow for providing numerous suggestions






