🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dxt-js

Javascript port of the squish DXT compression/decompression library using emscripten

0.0.3
latest
73

Supply Chain Security

100

Vulnerability

72

Quality

76

Maintenance

100

License

Version published
Weekly downloads
135
-17.68%
Maintainers
1
Weekly downloads
 
Created

dxt.js

Build Status

DXT (de)compression in nodejs and the browser (using browserify).

Usage

var dxt = require('dxt-js');
var imageData = getRawRGBADataFromSomeWhere();
var compressedData = dxt.compress(imageData, 256, 256, dxt.flags.DXT5); // assumes 256x256 image
var uncompressedData = dxt.decompress(imageData, 256, 256, dxtJS.flags.DXT5);

Note that all methods work with UInt8Array's so when using nodejs you'll have to conver them to and from node buffers.

Credits

dxt.js is based on libsquish compiled with emscripten and wouldn't be possible without the hard work of the respective authors.

FAQs

Package last updated on 18 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts