目录
- Node.js图片处理库sharp
- 1、sharp
- 2、源码
- 3、sharp的其他操作
- 总结
Node.js图片处理库sharp
1、sharp
sharp 是 Node.js 平台上相当热门的一个图像处理库,其实际上是基于 C 语言编写 的 libvips 库封装而来,因此高性能也成了 sharp 的一大卖点。
sharp 可以方便地实现常见的图片编辑操作,如裁剪、格式转换、旋转变换、滤镜添加等。
首先安装下sharp:
npm install sharp
2、源码
通过下面代码实现了自动转换输入图片到数组定义尺寸
const sharp = require("sharp"); | |
const fs = require("fs"); | |
/** | |
*、toFile | |
* @param {String} basePicture 源文件路径 | |
* @param {String} newFilePath 新文件路径 | |
*/ | |
function writeTofile(basePicture, newFilePath, width, height) { | |
sharp(basePicture) | |
.resize(width, height) //缩放 | |
.toFile(newFilePath); | |
} | |
function picTransition() { | |
var picConfigure = [ | |
{ name: "Default-h@2x-1.png", width: 640, height: 1136 }, | |
{ name: "Default-h@2x.png", width: 640, height: 1136 }, | |
{ name: "Default@x-1.png", width: 640, height: 960 }, | |
{ name: "Default@x.png", width: 640, height: 960 }, | |
{ name: "Loading@x.png", width: 750, height: 1334 }, | |
{ name: "Loading@x.png", width: 1242, height: 2208 }, | |
{ name: "LoadingX@x.png", width: 1125, height: 2436 } | |
]; | |
picConfigure.map((item) => { | |
writeTofile("./input.png", `./outImages/${item.name}`, item.width, item.height); | |
}); | |
} | |
picTransition(); |
resize参数
// 摘抄于sharp库 | |
interface ResizeOptions { | |
/** Alternative means of specifying width. If both are present this take priority. */ | |
width?: number; | |
/** Alternative means of specifying height. If both are present this take priority. */ | |
height?: number; | |
/** How the image should be resized to fit both provided dimensions, one of cover, contain, fill, inside or outside. (optional, default 'cover') */ | |
fit?: keyof FitEnum; | |
/** Position, gravity or strategy to use when fit is cover or contain. (optional, default 'centre') */ | |
position?: number | string; | |
/** Background colour when using a fit of contain, parsed by the color module, defaults to black without transparency. (optional, default {r:,g:0,b:0,alpha:1}) */ | |
background?: Color; | |
/** The kernel to use for image reduction. (optional, default 'lanczos') */ | |
kernel?: keyof KernelEnum; | |
/** Do not enlarge if the width or height are already less than the specified dimensions, equivalent to GraphicsMagick's > geometry option. (optional, default false) */ | |
withoutEnlargement?: boolean; | |
/** Take greater advantage of the JPEG and WebP shrink-on-load feature, which can lead to a slight moiré pattern on some images. (optional, default true) */ | |
fastShrinkOnLoad?: boolean; | |
} |
3、sharp的其他操作
// 跨平台、高性能、无运行时依赖 | |
const sharp = require('sharp'); | |
const fs = require('fs'); | |
const textToSvg = require('text-to-svg'); | |
const basePicture = `${__dirname}/static/云雾缭绕.png`; | |
// 流转Buffer缓存 | |
function streamToBuffer(stream) { | |
return new Promise((resolve, reject) => { | |
const bufferList = [] | |
stream.on('data', data => { | |
// 每一个data都是一个Buffer对象 | |
bufferList.push(data) | |
}) | |
stream.on('error', err => { | |
reject() | |
}) | |
stream.on('end', () => { | |
resolve(Buffer.concat(bufferList)) | |
}) | |
}) | |
} | |
/** | |
*、toFile | |
* @param {String} basePicture 源文件路径 | |
* @param {String} newFilePath 新文件路径 | |
*/ | |
function writeTofile(basePicture, newFilePath) { | |
sharp(basePicture) | |
.rotate() // 旋转 | |
.resize(, 500) //缩放 | |
.toFile(newFilePath) | |
} | |
// writeTofile(basePicture, `${__dirname}/static/云雾缭绕.png`); | |
/** | |
*、读取图片buffer | |
* @param {String} basePicture 源文件路径 | |
*/ | |
function readFileBuffer(basePicture) { | |
sharp(basePicture) | |
.toBuffer() | |
.then(data => { | |
console.log(data) | |
}) | |
.catch(err => { | |
console.log(err) | |
}) | |
} | |
// readFileBuffer(basePicture); | |
/** | |
*、对文件流进行处理 | |
* @param {String} basePicture 源文件路径 | |
*/ | |
function dealWithStream(basePicture) { | |
// 读取文件流 | |
const readableStream = fs.createReadStream(basePicture) | |
// 对流数据进行处理 | |
const transformer = sharp().resize({ | |
width:, | |
height:, | |
fit: sharp.fit.cover, | |
position: sharp.strategy.entropy | |
}) | |
// 将文件读取到的流数据写入transformer进行处理 | |
readableStream.pipe(transformer) | |
// 将可写流转换为buffer写入本地文件 | |
streamToBuffer(transformer).then(function(newPicBuffer) { | |
fs.writeFile(`${__dirname}/static/云雾缭绕.png`, newPicBuffer, function( | |
err | |
) { | |
if (err) { | |
console.log(err) | |
} | |
console.log('done') | |
}) | |
}) | |
} | |
// dealWithStream(basePicture); | |
/** | |
*、将文件的转为JPEG,并对JPEG文件进行处理 | |
* @param {String} basePicture 源文件路径 | |
*/ | |
function dealWithBuffer(basePicture) { | |
sharp(basePicture) | |
.resize(, 300, { | |
fit: sharp.fit.inside, | |
withoutEnlargement: true | |
}) | |
.toFormat('jpeg') | |
.toBuffer() | |
.then(function(outputBuffer) { | |
fs.writeFile(`${__dirname}/static/云雾缭绕.jpeg`, outputBuffer, function( | |
err | |
) { | |
if (err) { | |
console.log(err) | |
} | |
console.log('done') | |
}) | |
}) | |
} | |
// dealWithBuffer(basePicture) | |
/** | |
*、添加水印 | |
* @param {String} basePicture 原图路径 | |
* @param {String} watermarkPicture 水印图片路径 | |
* @param {String} newFilePath 输出图片路径 | |
*/ | |
function addWatermark(basePicture, watermarkPicture, newFilePath) { | |
sharp(basePicture) | |
.rotate() // 旋转180度 | |
.composite([ | |
{ | |
input: watermarkPicture, | |
top:, | |
left: | |
} | |
]) // 在左上坐标(, 10)位置添加水印图片 | |
.withMetadata() // 在输出图像中包含来自输入图像的所有元数据(EXIF、XMP、IPTC)。 | |
.webp({ | |
quality: | |
}) //使用这些WebP选项来输出图像。 | |
.toFile(newFilePath) | |
.catch(err => { | |
console.log(err) | |
}) | |
// 注意水印图片尺寸不能大于原图 | |
} | |
// addWatermark( | |
// basePicture, | |
// `${__dirname}/static/水印.png`, | |
// `${__dirname}/static/云雾缭绕.png` | |
// ) | |
/** | |
* 添加文字,类似添加水印 | |
* @param {String} basePicture 原图路径 | |
* @param {Object} font 字体设置 | |
* @param {String} newFilePath 输出图片路径 | |
* @param {String} text 待粘贴文字 | |
* @param {Number} font.fontSize 文字大小 | |
* @param {String} font.color 文字颜色 | |
* @param {Number} font.left 文字距图片左边缘距离 | |
* @param {Number} font.top 文字距图片上边缘距离 | |
*/ | |
function addText(basePicture, font, newFilePath) { | |
const { fontSize, text, color, left, top } = font; | |
// 同步加载文字转SVG的库 | |
const textToSvgSync = textToSvg.loadSync(); | |
// 设置文字属性 | |
const attributes = { | |
fill: color | |
}; | |
const options = { | |
fontSize, | |
anchor: 'top', | |
attributes | |
}; | |
// 文字转svg,svg转buffer | |
const svgTextBuffer = Buffer.from(textToSvgSync.getSVG(text, options)); | |
// 添加文字 | |
sharp(basePicture) | |
// .rotate() // 旋转180度 | |
.composite([ | |
{ | |
input: svgTextBuffer, | |
top, | |
left | |
} | |
]) // 在左上坐标(, 10)位置添加文字 | |
.withMetadata() // 在输出图像中包含来自输入图像的所有元数据(EXIF、XMP、IPTC)。 | |
.webp({ | |
quality: | |
}) //使用这些WebP选项来输出图像。 | |
.toFile(newFilePath) | |
.catch(err => { | |
console.log(err) | |
}); | |
} | |
addText( | |
basePicture, | |
{ | |
fontSize:, | |
text: '洋溢洋溢洋溢', | |
color: 'yellow', | |
left:, | |
top: | |
}, | |
`${__dirname}/static/云雾缭绕.png` | |
); |