UNPKG
fix-orientation
Version:
latest (1.1.0)
1.1.0
1.0.0
0.0.2
0.0.1
0.0.0
Rotate images if their exif data says so.
github.com/Wayla/fix-orientation
Wayla/fix-orientation
fix-orientation
/
lib
/
url-to-image.js
9 lines
(7 loc)
•
163 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module.exports = urlToImage;
function
urlToImage
(
url, fn
)
{
var
img =
new
Image
();
if
(
fn
)
img
.
onload
=
fn
.
bind
(
null
, img
)
; img.src = url;
return
img; }