Tga.js Save

Load and display TGA files with Javascript.

Project README

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');
Open Source Agenda is not affiliated with "Tga.js" Project. README Source: vthibault/tga.js
Stars
45
Open Issues
0
Last Commit
3 years ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating