JSPM

dxt-js

0.0.3
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 399
    • Score
      100M100P100Q91203F

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

    Package Exports

    • dxt-js

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dxt-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    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.