Actions80
- Add Attachment To PDF
- Add Barcode To PDF
- Add Form Fields To PDF
- Add HTML Header Footer
- Add Image Stamp To PDF
- Add Image Watermark To Image
- Add Margin To PDF
- Add Page Number To PDF
- Add Text Stamp To PDF
- Add Text Watermark To Image
- AI-Invoice Parser
- AI-Process Contract
- AI-Process HealthCard
- Classify Document
- Compress Image
- Compress PDF
- Convert HTML To PDF
- Convert Image Format
- Convert JSON To Excel
- Convert Markdown To PDF
- Convert PDF To Editable PDF Using OCR
- Convert PDF To Excel
- Convert PDF To PowerPoint
- Convert PDF To Word
- Convert To PDF
- Convert URL to PDF
- Convert VISIO
- Convert Word to PDF Form
- Create Images From PDF
- Create PDF/A
- Create Swiss QR Bill
- Crop Image
- Delete Blank Pages From PDF
- Delete Unwanted Pages From PDF
- Disable Tracking Changes In Word
- Enable Tracking Changes In Word
- Extract Attachment From PDF
- Extract Form Data From PDF
- Extract Pages From PDF
- Extract Resources
- Extract Table From PDF
- Extract Text By Expression
- Extract Text From Word
- Fill PDF Form
- Find And Replace Text
- Flip Image
- Flatten PDF
- Generate Barcode
- Generate Document Single
- Generate Documents Multiple
- Get Document From Pdf4me
- Get Image Metadata
- Get PDF Metadata
- Get Tracking Changes In Word
- Image Extract Text
- Linearize PDF
- Merge Multiple PDFs
- Overlay PDFs
- Parse Document
- Protect PDF
- Read Barcode From Image
- Read Barcode From PDF
- Read SwissQR Code
- Remove EXIF Tags From Image
- Repair PDF Document
- Replace Text With Image
- Replace Text With Image In Word
- Resize Image
- Rotate Document
- Rotate Image
- Rotate Image By EXIF Data
- Rotate PDF Page
- Sign PDF
- Split PDF By Barcode
- Split PDF By Swiss QR
- Split PDF By Text
- Split PDF Regular
- Unlock PDF
- Update Hyperlinks Annotation
- Upload File To PDF4me
Overview
This node operation "Flip Image" allows users to flip an image either horizontally, vertically, or both. It supports multiple input methods for the image: binary data from a previous node, a base64 encoded string, or a URL pointing to the image file. The flipped image is then output as binary data with a customizable filename.
Common scenarios where this node is useful include:
- Image preprocessing workflows where images need to be mirrored or flipped before further processing.
- Automated content creation pipelines that require image orientation adjustments.
- Preparing images for display or printing where flipping is necessary.
Practical example:
- A user receives product images via URL and wants to flip them vertically before uploading to their catalog.
- An automation workflow processes scanned documents and flips them horizontally to correct orientation issues.
Properties
| Name | Meaning |
|---|---|
| Input Data Type | Choose how to provide the image file to flip. Options: Binary Data, Base64 String, URL |
| Input Binary Field | Name of the binary property containing the image file (used if Input Data Type is Binary Data) |
| Base64 Image Content | Base64 encoded image content (used if Input Data Type is Base64 String) |
| Image URL | URL to the image file to flip (used if Input Data Type is URL) |
| Output File Name | Name for the output flipped image file |
| Orientation Type | Orientation to flip the image. Options: Horizontal, Vertical, Horizontal and Vertical |
| Async | Enable asynchronous processing (boolean) |
| Binary Data Output Name | Custom name for the binary data in n8n output |
Output
The node outputs the flipped image as binary data under the specified binary data output name (default is "data"). The output includes the flipped image file with the chosen output filename. This binary data can be used by subsequent nodes for further processing or saving.
Dependencies
- No external API keys or services are explicitly required based on the static code.
- The node depends on internal image processing capabilities provided by the bundled action module responsible for flipping images.
- No special environment variables or configurations are indicated.
Troubleshooting
Common Issues:
- Providing an incorrect binary property name when using binary data input may cause the node to fail to find the image.
- Invalid or inaccessible URLs will result in errors fetching the image.
- Malformed base64 strings will cause decoding failures.
- Unsupported image formats might not be processed correctly.
Error Messages:
- Errors related to missing binary data typically mean the specified binary field does not exist in the input.
- Network errors when using URL input indicate connectivity or URL validity problems.
- Decoding errors suggest invalid base64 content.
Resolutions:
- Verify the binary property name matches exactly the name of the binary data field from the previous node.
- Ensure URLs are accessible and point directly to image files.
- Validate base64 strings before input.
- Use supported image formats (commonly JPEG, PNG).