1.0.5 • Published 6 years ago

js-blp v1.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

js-blp

This module provides functionality for reading texture files associated with Blizzard games (.blp) in JS and Node.

Installing

NodeJS

npm install js-blp

Web JS

<script type="text/javascript" src="bufo.js"></script>
<script type="text/javascript" src="js-blp.js"></script>

Example Usage

NodeJS

const fs = require('fs');
const BLPFile = require('js-blp');

// Check Bufo documentation for other ways to provide data beyond fs.
let blp = new BLPFile(fs.readFileSync('cat.blp'));

// Metadata can be accessed after construction..
console.info({
	"width": blp.width,
	"height": blp.height,
	"encoding": blp.encoding,
	"alphaEncoding": blp.alphaEncoding,
	"alphaDepth": blp.alphaDepth,
	"mipmapCount": blp.mapCount
});

// Data is requested for a specific mipmap..
let data = blp.getPixels(0);

// data is an instance of Bufo containing the pixel data in the format:
// [ R, G, B, A, R, G, B, A, R, G, B, A ... ]
1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago