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); Copy
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);