tga-js

1.1.1 • Public • Published

tga-js

Browser License: MIT

tga-js is a tga file loader written in JavaScript, working in the browser environment. It provides a simple and really fast solution for loading TGA file format.

Lot of games are using TGA files to store textures. So, since browsers try to bring games in the web it can be a good idea to have a TGA loader (actually a better idea to use another smaller file format).


🔗 Used by :


🚀 Installation

Install with yarn:

$ yarn add tga-js

Or install using npm:

$ npm i tga-js

📖 Usage

Loading a remote tga file.

import TgaLoader from 'tga-js';
 
const tga = new TgaLoader();
tga.open('./assets/resource.tga', () => {
  document.body.appendChild(tga.getCanvas());
});

Loading a tga from buffer.

import TgaLoader from 'tga-js';
 
const tga = new TgaLoader();
 
// Your own function returning a buffer from cache/memory/..
const buffer = getImageBufferFromCache('resource/data');
 
tga.load(new UInt8Array(buffer));
document.body.appendChild(tga.getCanvas());

Get data-uri as output

tga.getDataURL('image/png');

Package Sidebar

Install

npm i tga-js

Weekly Downloads

376

Version

1.1.1

License

MIT

Unpacked Size

17.5 kB

Total Files

6

Last publish

Collaborators

  • vthibault