39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
//Create useful variables
|
|
const aspect = W / H;
|
|
const scale = aspect >= 1 ? H / 2 : W / 2;
|
|
|
|
function setup() {
|
|
// Reset transform
|
|
C.setTransform(1, 0, 0, 1, 0, 0);
|
|
|
|
// Clear canvas
|
|
C.clearRect(0, 0, W, H);
|
|
|
|
// Reset common properties
|
|
C.globalCompositeOperation = 'source-over';
|
|
C.fillStyle = 'rgba(255,200,100,1)';
|
|
C.strokeStyle = 'rgba(0,0,0,1)';
|
|
|
|
|
|
// Set up transform to map -1,-1..1,1 to canvas with aspect fit
|
|
const offsetX = W / 2;
|
|
const offsetY = H / 2;
|
|
|
|
//Apply transform
|
|
C.translate(offsetX, offsetY);
|
|
C.scale(scale, -scale);
|
|
|
|
// Set 1 pixel wide lines
|
|
C.lineWidth = 1 / scale;
|
|
}
|
|
|
|
|
|
setup();
|
|
|
|
|
|
|
|
const { load_image_from_src, Image_Data_Sampler } = await import('../lib/image-functions.js');
|
|
const sampler = new Image_Data_Sampler(await load_image_from_src("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAFVJREFUOE9jZGBg+A/EZAMmsnVCNQ4DA1hAXvn/HxGOjIyMJAULC0gzsiZ0PiHTwC5AB8guQpdD52M1gJA3YK4E0SwgxZSEASjERlMieryQyKc4MwEA45UXJyonWOMAAAAASUVORK5CYII="));
|
|
|
|
console.log(sampler.encode_as_bitfield());
|