admin管理员组文章数量:1347149
I read the docs:
But could not find how to convert an image from png to jpg.
I must have missed something obvious.
Using jimp on my server with Node.js.
Here's my code:
image.scaleToFit(500, 500, Jimp.RESIZE_BICUBIC).quality(60).write("./public/images/uploads/thumb"+req.file.filename, function(err) {
I read the docs: https://github./oliver-moran/jimp
But could not find how to convert an image from png to jpg.
I must have missed something obvious.
Using jimp on my server with Node.js.
Here's my code:
image.scaleToFit(500, 500, Jimp.RESIZE_BICUBIC).quality(60).write("./public/images/uploads/thumb"+req.file.filename, function(err) {
Share
Improve this question
edited Jul 26, 2017 at 19:54
asked Jul 26, 2017 at 19:39
anonanon
3
- Have you tried loading the image and saving it as a different format? – E_net4 Commented Jul 26, 2017 at 19:40
- What is "req.file.filename" ? Appears that you are trying to save with the original filename, and from what you said it sounds like original filename is "png" therefore you get output "png". Try adding ".jpg" extension – Edgar Zagórski Commented Jul 26, 2017 at 20:05
- 1 @EdgarZagórski That was it. – anon Commented Jul 26, 2017 at 20:22
1 Answer
Reset to default 10What is wrong with the example from their documentation? It kind of does what you want - converts png to jpg.
var Jimp = require("jimp");
// open a file called "lenna.png"
Jimp.read("lenna.png", function (err, lenna) {
if (err) throw err;
lenna.resize(256, 256) // resize
.quality(60) // set JPEG quality
.greyscale() // set greyscale
.write("lena-small-bw.jpg"); // save
});
本文标签: javascriptHow to convert image from png to jpg in jimpStack Overflow
版权声明:本文标题:javascript - How to convert image from png to jpg in jimp? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743832152a2546720.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论