mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
🐛 Fix Empty buffer error in ImageEdit node
This commit is contained in:
parent
5cce827d6f
commit
4bf7ea3e26
|
@ -11,7 +11,7 @@ import {
|
||||||
INodeType,
|
INodeType,
|
||||||
INodeTypeDescription,
|
INodeTypeDescription,
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
import * as gm from 'gm';
|
const gm = require('gm').subClass({imageMagick: true});
|
||||||
import { file } from 'tmp-promise';
|
import { file } from 'tmp-promise';
|
||||||
import {
|
import {
|
||||||
parse as pathParse,
|
parse as pathParse,
|
||||||
|
|
Loading…
Reference in a new issue