Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>drawImage with image orientation: from-image and a sub-image source rect</title>
<link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
<link rel="match" href="drawImage-with-src-rect-ref.html">
<meta name=fuzzy content="0-3;0-200">
<script>
window.onload = () => {
const img = document.getElementById('img-element');
const can = document.getElementById('bitmap-canvas');
can.height = img.height;
can.width = img.width;
can.getContext('2d').drawImage(img, 40, 20, 50, 25, 0, 0, can.width, can.height);
};
</script>
</head>
<body>
<img id="img-element" src="/css/css-images/image-orientation/support/exif-orientation-3-lr.jpg">
<canvas id="bitmap-canvas"></canvas>
</body>
</html>