使用 node.js 和 Sharp 包将非裁剪调整为 png

Posted

技术标签:

【中文标题】使用 node.js 和 Sharp 包将非裁剪调整为 png【英文标题】:Non crop resize to png with node.js and Sharp package 【发布时间】:2018-05-27 21:42:52 【问题描述】:

我正在尝试使用 Nodejs 锐化包调整图像大小/转换为 png 而不进行裁剪。根据文档,它是 .max() 方法,遗憾的是在调整为 png 时它不起作用(图像被裁剪)。有什么解决方法吗?

【问题讨论】:

【参考方案1】:

嘿,如果您仍然想知道,这就是您可以做到的。

await sharp(postImage).resize(800, 900, fit:"contain").toFile("/output/path");

在 .resize() 的第三个参数中,您可能需要提及 fit,它可以是 'fill'、'contain' 等。'contain' 将嵌入图像而不改变其原始高度、宽度和填充背景颜色(默认黑色)。 “填充”将拉伸图像。 For More

【讨论】:

【参考方案2】:

如果您使用sharp,那么您可以使用

sharp()
  .resize(400, 400, 
    fit: sharp.fit.inside,
    withoutEnlargement: true, // if image's original width or height is less than specified width and height, sharp will do nothing(i.e no enlargement)
  )
inside: 将适合宽度 400 和高度 400 内的图像不裁剪图像的任何部分并且不添加黑色填充 用于调整输出图像的尺寸 从技术上讲,它会将图像调整为尽可能大,同时确保其尺寸小于或等于指定的尺寸。

【讨论】:

以上是关于使用 node.js 和 Sharp 包将非裁剪调整为 png的主要内容,如果未能解决你的问题,请参考以下文章

如何使用sharp.js将图像从缓冲区存储到node.js中的文件系统

sharp.js中文文档

5款Node.js相关的图片工具

使用分发 nodejs 包将 NPM 安装到主目录(Ubuntu)

使用 node.js 的 cloudinary 作物不起作用?

使用 Mongoose+Node.js 在 MongoDB 中存储非结构化 JavaScript 对象