An n8n community node to convert HEIC images to JPG or PNG
npm install n8n-nodes-heic-image-converterAn n8n community node that converts HEIC image binaries to JPG or PNG.
Author: Andrei Stoleru (@stoleru)
``bash`
npm install n8n-nodes-heic-image-converter
Restart n8n after installing to load the node.
- Input: Any item with a binary HEIC image (e.g., from HTTP Request or Webhook).
- Output: The converted image as JPG or PNG in a binary property you choose.
1. Add HEIC Converter to your workflow.
2. Configure:
- Binary Property: Name of the HEIC binary input (default: data).JPG
- Output Format: or PNG.data
- JPEG Quality: For JPG, 1–100 (default: 90).
- Output Binary Property: Where to store the converted image (default: ).
3. Run the workflow. The node emits the converted image in the output binary property.
- The node uses heic-convert` under the hood for conversion.
- Keeps existing JSON data and other binary properties intact, only adding/replacing the configured output binary property.