jpx
    Preparing search index...

    jpx


    jpx
    A javascript image processing toolkit


    DEMO | API Docs


    This package is highly inspired from the great CImg library.

    import * as jpx from '@dx/jpx';

    const myImage = new jpx.Image(512,512,3);
    myImage.fill(255);

    const canvas = document.querySelector('#canvas');
    myImage.output(canvas);