gpt4 book ai didi

node.js - Nodejs Sharp webp 无损压缩

转载 作者:太空宇宙 更新时间:2023-11-04 00:00:27 30 4
gpt4 key购买 nike

我正在开发 Imgix 的类似服务,并且正在使用 Sharp。

但是Imgix的webp无损压缩效果比Sharp更好。具有相同宽度和高度的相同图像在 Imgix 中为 453 KB,而在 Sharp 中为 1.3 MB。

一些在不损失质量的情况下增加压缩的建议?

我正在使用的代码:

https.get(url, function (response) {
let transform = sharp().toFormat('webp').resize(width, height);
return response.pipe(transform).webp({lossless:true}).pipe(res);
});

最佳答案

我看到document选项中有一些字段:质量、alphaQuality、nearLossless、force。你能尝试一下吗?并与IMGIX进行比较

  • quality: Number quality, integer 1-100 (optional, default 80)
  • alphaQuality: Number quality of alpha layer, integer 0-100 (optional, default 100)
  • lossless: Boolean use lossless compression mode (optional, default false)
  • nearLossless: Boolean use near_lossless compression mode (optional, default false)
  • force: Boolean force WebP output, otherwise attempt to use input format (optional, default true)
https.get(url, function (response) {
let transform = sharp().toFormat('webp').resize(width, height);
return response.pipe(transform).webp({lossless:true, quality: 60, alphaQuality: 80, force: false}).pipe(res);
});

关于node.js - Nodejs Sharp webp 无损压缩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54953700/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com