jpxA javascript image processing toolkit DEMO | API Docs This package is highly inspired from the great CImg library. Get started 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);