Use `Canvas::toDataURL` to preserve `ImageView` logic

This way, all the other code paths remain untouched in case we want to remove
the auto-orient code once Chrome supports the `image-orientation` CSS property.

See:
- #998
- https://developer.mozilla.org/en-US/docs/Web/CSS/image-orientation
This commit is contained in:
Daniel Gasienica 2018-02-09 15:23:58 -05:00
parent 62fd744f9f
commit ea70b92d9b
2 changed files with 3 additions and 7 deletions

View File

@ -17,9 +17,8 @@
tagName: 'img',
initialize: function(objectUrl, contentType, blob) {
loadImage(blob, autoOrientedCanvas => {
this.el.replaceWith(autoOrientedCanvas);
this.source = autoOrientedCanvas.toDataURL();
this.render();
this.update();
}, {
orientation: true,
});
@ -31,7 +30,7 @@
this.trigger('update');
},
render: function() {
if (!this.source) {
if (this.source == null) {
return this;
}

View File

@ -568,10 +568,7 @@ span.status {
background-color: #ccc;
}
img,
canvas, /* used for auto-oriented images from `loadImage` */
audio,
video {
img, audio, video {
max-width: 100%;
max-height: 300px;
}