16 lines
373 B
JavaScript
Raw Normal View History

2023-05-16 12:29:52 +02:00
function load_panorama()
{
2023-05-16 15:15:23 +02:00
let ctx = document.getElementById('panorama').getContext('2d');
let img = new Image();
const width = 5000;
ctx.canvas.width = width;
ctx.canvas.height = width / 2;
img.onload = function()
{
2023-05-16 15:15:23 +02:00
ctx.drawImage(img, 0, 0, img.width, img.height, 0, 0, width, width / 2);
};
img.src = './res/img/test.jpg';
2023-05-16 12:29:52 +02:00
}