文件名称:bpg-stream:基于流的 JPGPNG 到 BPG 转码器
文件大小:468KB
文件格式:ZIP
更新时间:2024-07-10 05:31:12
JavaScript
bpg 流 将 JPG 或 PNG 图像流编码为 BPG 图像格式。 用法 var Encoder = require ( 'bpgencoder' ) ; // Create a read stream from a PNG file. fs . createReadStream ( path . join ( __dirname , 'Lenna.png' ) ) // Pipe to a new instance of BPG encoder. . pipe ( new Encoder ( ) ) // Pipe the image out to a file. . pipe ( fs . createWriteStream ( path . join ( __dirname , 'Lenna.bpg' ) ) ) ; 安装 确保你已经安装了 libbpg,并且在你
【文件预览】:
bpg-stream-master
----test()
--------Lenna.png(463KB)
--------index.js(1KB)
----README.md(2KB)
----.gitignore(41B)
----index.js(8KB)
----package.json(649B)