admin管理员组文章数量:1348129
After scaling and coloring a JPG with Sharp, I immediately delete the input file. When I upload a new file with the same name, Sharp will output the old file. I'm running NodeJS on Ubuntu 16.04.
Here is the code for editing the file:
sampleFile.mv(__dirname + "/" + name + "." + ext, function(err) {
if (err)
return res.status(500).send(err);
res.send('File uploaded!');
if (ext != "xlsx") {
// This will attempt to resize the images
console.log("Sharpening image")
sharp(__dirname + "/" + name + "." + ext).resize({ height: 27 }).flatten( { background: '#ffffff' } ).toFile("/var/www/my_ip/file.jpg")
.then(function(newFileInfo) {
// newFileInfo holds the output file properties
console.log("Success")
try {
fileSystem.unlinkSync(__dirname + "/" + name + "." + ext)
//file removed
} catch(err) {
console.error(err)
}
})
.catch(function(err) {
console.log("Error occured with file " + name + "." + ext + " | Dir: " + __dirname);
console.log(err)
try {
fileSystem.unlinkSync(__dirname + "/" + name + "." + ext)
//file removed
} catch(err) {
console.error(err)
}
//})
}); //this line errored
}
});
The first time I run it, it works just like intended, however if the file I use for the second run has the same name as the original file, it will somehow remember the old file and output that instead. I'm not sure how it remembers that file, as I immediately delete it. Any ideas on how to fix this?
Edit: To make sure the problem was not related to the first file not being properly deleted, I did a quick test. First, I use the server to edit 1 file, and I get that edited file as output, just as expected. Now, instead of editing a new file with the same name again, I restarted the server, then edited a new file with the same name. It now correctly outputted the new file. I believe the NPM must have some cache that I'm unaware of, currently reading the docs to so if my theory is correct.
After scaling and coloring a JPG with Sharp, I immediately delete the input file. When I upload a new file with the same name, Sharp will output the old file. I'm running NodeJS on Ubuntu 16.04.
Here is the code for editing the file:
sampleFile.mv(__dirname + "/" + name + "." + ext, function(err) {
if (err)
return res.status(500).send(err);
res.send('File uploaded!');
if (ext != "xlsx") {
// This will attempt to resize the images
console.log("Sharpening image")
sharp(__dirname + "/" + name + "." + ext).resize({ height: 27 }).flatten( { background: '#ffffff' } ).toFile("/var/www/my_ip/file.jpg")
.then(function(newFileInfo) {
// newFileInfo holds the output file properties
console.log("Success")
try {
fileSystem.unlinkSync(__dirname + "/" + name + "." + ext)
//file removed
} catch(err) {
console.error(err)
}
})
.catch(function(err) {
console.log("Error occured with file " + name + "." + ext + " | Dir: " + __dirname);
console.log(err)
try {
fileSystem.unlinkSync(__dirname + "/" + name + "." + ext)
//file removed
} catch(err) {
console.error(err)
}
//})
}); //this line errored
}
});
The first time I run it, it works just like intended, however if the file I use for the second run has the same name as the original file, it will somehow remember the old file and output that instead. I'm not sure how it remembers that file, as I immediately delete it. Any ideas on how to fix this?
Edit: To make sure the problem was not related to the first file not being properly deleted, I did a quick test. First, I use the server to edit 1 file, and I get that edited file as output, just as expected. Now, instead of editing a new file with the same name again, I restarted the server, then edited a new file with the same name. It now correctly outputted the new file. I believe the NPM must have some cache that I'm unaware of, currently reading the docs to so if my theory is correct.
Share Improve this question edited Jul 17, 2019 at 10:12 Asgeir asked Jul 17, 2019 at 9:37 AsgeirAsgeir 6971 gold badge9 silver badges23 bronze badges1 Answer
Reset to default 12Yes, my theory was correct! Sharp does have a cache, and for some reason keeps previously edited files open. It's probably good for optimization, but if you're having the same issues as me, and you're not worried about optimization, you can turn the cache of like so:
sharp.cache(false);
本文标签:
版权声明:本文标题:javascript - Why does Sharp output the same file, even though I have changed the input file? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743837475a2547669.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论