| <!DOCTYPE html> |
| <style> |
| div.container { |
| display: inline-block; |
| margin-right: 20px; |
| margin-bottom: 10px; |
| width: 100px; |
| vertical-align: top; |
| } |
| div.horizontal { |
| width: 100px; |
| height: 50px; |
| } |
| div.vertical { |
| width: 50px; |
| height: 100px; |
| } |
| img { |
| -webkit-transform: translateZ(0); |
| } |
| </style> |
| <body> |
| <b>The images of the composited <img> elements should be rotated respecting their EXIF orientation.</b> |
| <br> |
| <br> |
| <div class="container"> |
| <div class="horizontal"> |
| <img id="img2" src="resources/exif-orientation-2-ur.jpg"> |
| </div> |
| <br>Flipped horizontally |
| </div> |
| <div class="container"> |
| <div class="horizontal"> |
| <img id="img3" src="resources/exif-orientation-3-lr.jpg"> |
| </div> |
| <br>Rotated 180° |
| </div> |
| <div class="container"> |
| <div class="horizontal"> |
| <img id="img4" src="resources/exif-orientation-4-lol.jpg"> |
| </div> |
| <br>Flipped vertically |
| </div> |
| <br> |
| <div class="container"> |
| <div class="vertical"> |
| <img id="img5" src="resources/exif-orientation-5-lu.jpg"> |
| </div> |
| <br>Rotated 90° CCW and flipped vertically |
| </div> |
| <div class="container"> |
| <div class="vertical"> |
| <img id="img6" src="resources/exif-orientation-6-ru.jpg"> |
| </div> |
| <br>Rotated 90° CCW |
| </div> |
| <div class="container"> |
| <div class="vertical"> |
| <img id="img7" src="resources/exif-orientation-7-rl.jpg"> |
| </div> |
| <br>Rotated 90° CW and flipped vertically |
| </div> |
| <div class="container"> |
| <div class="vertical"> |
| <img id="img8" src="resources/exif-orientation-8-llo.jpg"> |
| </div> |
| <br>Rotated 90° CW |
| </div> |
| <br> |
| <ul id="console"></ul> |
| <script> |
| function log(str) { |
| var li = document.createElement("li"); |
| li.appendChild(document.createTextNode(str)); |
| var console = document.getElementById("console"); |
| console.appendChild(li); |
| } |
| |
| function imageSize(el) { |
| var computedStyle = window.getComputedStyle(el); |
| return computedStyle.width + " by " + computedStyle.height; |
| } |
| |
| window.addEventListener('load', (event) => { |
| for(var i = 2; i <= 8; i++) |
| log("img" + i + " size = " + imageSize(document.getElementById("img" + i))); |
| }); |
| </script> |
| </body> |