Giter Site home page Giter Site logo

png-js's Introduction

png-js

This is a modified version of png.js that is intended to be used for palette swapping within the browser.

NOTE: Only supports indexed PNGs for obvious reasons. All others will cause IndexedPNG to throw during construction.

Usage

The following shows the process of loading a PNG file and rendering it to a canvas with its palette data reversed.

import { IndexedPNG }   from '@kettek/png-js/src'
import { readFile   }   from 'fs'

readFile("my_png.png", (err, data) => {
    if (err) throw err
    
    // Create an IndexedPNG object from our data.
    let png = new IndexedPNG(data)
    
    // Preemptively decode PNG data (optional).
    png.decode()
    
    // Convert our PNG data into an ImageData, usable by a Canvas. Passed options provide a reversed palette and a clipping.
    png.toImageData({
      palette: png.decodePalette().reverse(),
      clip: {
        x: 16,
        y: 16,
        w: 32,
        h: 32
      }
    })
    .then(imageData => {
      // This presumes at least one canvas element exists on the page.
      document.getElementsByTagName('canvas')[0]
      .getContext('2d')
      .putImageData(imageData, 0, 0)
    })
    .catch(err => {
        throw err
    })
})

Types

IndexedPNG

IndexedPNG(Buffer) : processes PNG data but does not decode it.

async decodePixels() : Decodes the PNG pixel data and returns it.

decodePalette() : Decodes the PNG palette and returns it as a Palette.

async decode() : Decodes the palette and the pixel data of the PNG data passed into the constructor. Calls decodePixels() and decodePalette().

ImageData async toImageData(ImageDataOptions) : Returns ImageData. Calls toPNGData(options).

PNGData async toPNGData(ImageDataOptions) : Returns PNGData. Calls decode() automatically if PNG has not been decoded.

ImageDataOptions

Object containing options to apply during toImageData().

Property Type Description
palette Palette Palette data to use for decoding.
clip Clip Clipping options to use for decoding.

Palette

A Buffer or Array containing the palette RGBA palette data.

let palette = [
    255, 0  ,  0  , 255, // Index 0
    0  , 255,  0  , 255, // Index 1
    0  , 0  ,  255, 255, // Index 2
    ...
]

Clip

Options to clip pixel data.

Property Type Defaults Description
x Number 0 Starting X coordinate.
y Number 0 Starting Y coordinate.
w Number width - x Width of clip.
h Number height - y Height of clip.
let clip = {
    x: 16,
    y: 16,
    w: 32,
    h: 32,
}

PNGData

Object containing the pixel data and row width.

Property Type
pixels Uint8ClampedArray
width Number

png-js's People

Contributors

kettek avatar dependabot[bot] avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.