IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 在node中使用 PngQuant -> 正文阅读

[JavaScript知识库]在node中使用 PngQuant

在node中使用 PngQuant

1. 依赖准备

2. 使用方法

官方示例:

var PngQuant = require('pngquant'),
  myPngQuanter = new PngQuant([192, '--quality', '60-80', '--nofs', '-']);

sourceStream.pipe(myPngQuanter).pipe(destinationStream);

官方示例非常简约,很多人一看就直接晕了,特别是都没接触过 MemoryStream 的人,我也是在官方的github仓库中看到了相关内容才知道需要用 MemoryStream 的,所以上面依赖我就推荐安装两个了,若果有别的 MemoryStream也可以用别的。下面展示我的demo:

const fs = require('fs');
const path = require('path');
const PngQuant = require('pngquant');
const MemoryStream = require('memory-stream');

let sourceImg = path.join(__dirname, '原图 与当前js文件所在目录的相对路径');
let compressedImg = path.join(__dirname, '压缩后图 与当前js文件所在目录的相对路径');

const sourceStream = fs.createReadStream(sourceImg);
const destinationStream = new MemoryStream();

const myPngQuanter = new PngQuant([192, '--quality', '60-80', '--nofs', '-']);

sourceStream.pipe(myPngQuanter).pipe(destinationStream);

// 完成压缩的图片转为buffer然后保存为图片
destinationStream.on('finish', function () {
  // 把buffer写入到图片文件
  fs.writeFile(compressedImg, destinationStream.toBuffer(), function (err) {
    if (err) {
      console.log(err);
    }
  });
});

压缩后的png图片效果很明显,有80%多的压缩率,而且图片肉眼看基本不失真,压缩算法很不错。

3. 命令分析

node 中使用 pngquant 时,传入的一个数组参数是一个 options ,其实相当于使用命令行时输入的命令参数。
示例中使用的参数,转换成命令行应该是:

pngquant --quality=60-80 --nofs=-

在命令行使用时,语法是这样的:

# 1
pngquant [options] [ncolors] -- pngfile [pngfile ...]
# 2
pngquant [options] [ncolors] - >stdout <stdin
usage:  pngquant [options] [ncolors] [pngfile [pngfile ...]]

options:
  --force           overwrite existing output files (synonym: -f)
  --nofs            disable Floyd-Steinberg dithering
  --ext new.png     set custom suffix/extension for output filename
  --speed N         speed/quality trade-off. 1=slow, 3=default, 10=fast & rough
  --quality min-max don't save below min, use less colors below max (0-100)
  --verbose         print status messages (synonym: -v)
  --iebug           increase opacity to work around Internet Explorer 6 bug
  --transbug        transparent color will be placed at the end of the palette

Quantizes one or more 32-bit RGBA PNGs to 8-bit (or smaller) RGBA-palette
PNGs using Floyd-Steinberg diffusion dithering (unless disabled).
The output filename is the same as the input name except that
it ends in "-fs8.png", "-or8.png" or your custom extension (unless the
input is stdin, in which case the quantized image will go to stdout).
The default behavior if the output file exists is to skip the conversion;
use --force to overwrite.

所以想要增加配置,直接在New QngQuant 中增加即可

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-05-07 11:06:01  更:2022-05-07 11:08:13 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 22:33:53-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码