blob: 3b16241c97c66cd02457f6e232ca7a5aa87cd286 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>createImageBitmap and drawImage from an element source with image orientation: none</title>
<link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">
<link rel="match" href="drawImage-from-bitmap-swap-width-height-orientation-none-ref.html">
<script>
image = new Image();
image.src = "/css/css-images/image-orientation/support/exif-orientation-7-rl.jpg";
let imageLoadPromise = new Promise(resolve => {
image.onload = resolve;
});
let contentLoadedPromise = new Promise(resolve => {
window.addEventListener('DOMContentLoaded', resolve);
});
Promise.all([imageLoadPromise, contentLoadedPromise]).then( async function() {
const bitmap = await createImageBitmap(image);
const can = document.getElementById('bitmap-canvas');
can.height = 50;
can.width = 100;
can.getContext('2d').drawImage(bitmap, 0, 0);
})
</script>
</head>
<body>
<img id="img-element" src="/css/css-images/image-orientation/support/exif-orientation-7-rl.jpg">
<canvas id="bitmap-canvas" style="image-orientation: none;"></canvas>
</body>
</html>