n8n-nodes-heic-image-converter
v0.1.4
Published
An n8n community node to convert HEIC images to JPG or PNG
Maintainers
Readme
n8n HEIC Image Converter
An n8n community node that converts HEIC image binaries to JPG or PNG.
Author: Andrei Stoleru (@stoleru)
Installation
npm install n8n-nodes-heic-image-converterRestart n8n after installing to load the node.
How it works
- Input: Any item with a binary HEIC image (e.g., from
HTTP RequestorWebhook). - Output: The converted image as JPG or PNG in a binary property you choose.
Usage
- Add HEIC Converter to your workflow.
- Configure:
- Binary Property: Name of the HEIC binary input (default:
data). - Output Format:
JPGorPNG. - JPEG Quality: For JPG, 1–100 (default: 90).
- Output Binary Property: Where to store the converted image (default:
data).
- Binary Property: Name of the HEIC binary input (default:
- Run the workflow. The node emits the converted image in the output binary property.
Notes
- The node uses
heic-convertunder the hood for conversion. - Keeps existing JSON data and other binary properties intact, only adding/replacing the configured output binary property.
