Skip to content

Instantly share code, notes, and snippets.

View laziel's full-sized avatar
🐳

Jihan Kim laziel

🐳
  • NAVER Corp.
  • Seoul, South Korea
View GitHub Profile
@nezed
nezed / EXIF image orientation CSS transform fix.js
Created August 21, 2016 23:54
EXIF image orientation CSS transform fix / fix orientation of image picked from local FS without canvas
/*
* This gist will help you to fix orientation
* of image picked from local FS
* without canvas.
* CSS-only!
*
* @expample
* const img = document.createElement('img')
* img.src = URL.createObjectURL(file)
* img.style.transform = ORIENT_TRANSFORMS[ getOrientation(file) ]