Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dxt-js

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

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
  • npm
  • Socket score

Version published
Weekly downloads
72
decreased by-28%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc