我正在尝试从节点使用此包gm,这也需要我在顶部需要fs。它给了我一些错误,但我修复了将此配置添加到我的webpack.config文件中:
node: {
fs: "empty",
child_process: "empty"
}
添加此新警告后显示:
Module not found: Error: Cannot resolve module 'spawn-sync' in
和目录路径。
当我使用此库的裁剪功能时,我得到TypeError: cp.spawn is not a function
我使用的代码是:
gm("The path to the picture")
.crop(2574, 1872, 279, 567)
.write("path and name of the new file", (err) => {
if (!err) console.log("done");
if (err) console.log(err);
});
现在我正在反应中使用它,它在电子中运行。代码有什么问题吗?或者我能做些什么才能让它发挥作用?
我要做的就是裁剪一张照片,给出起点以及我要拍摄的照片。