Skip to content

Commit

Permalink
Image dimensions during exif rotation have been corrected (#791)
Browse files Browse the repository at this point in the history
  • Loading branch information
popinguy authored and hipstersmoothie committed Oct 18, 2019
1 parent 29679fa commit 0356849
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/core/src/utils/image-bitmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function getMIMEFromBuffer(buffer, path) {
/*
* Automagically rotates an image based on its EXIF data (if present)
* @param img a constants object
*/
*/
function exifRotate(img) {
const exif = img._exif;

Expand All @@ -40,22 +40,22 @@ function exifRotate(img) {
img.mirror(true, false);
break;
case 3: // Rotate 180
img.rotate(180, false);
img.rotate(180);
break;
case 4: // Mirror vertical
img.mirror(false, true);
break;
case 5: // Mirror horizontal and rotate 270 CW
img.rotate(-90, false).mirror(true, false);
img.rotate(-90).mirror(true, false);
break;
case 6: // Rotate 90 CW
img.rotate(-90, false);
img.rotate(-90);
break;
case 7: // Mirror horizontal and rotate 90 CW
img.rotate(90, false).mirror(true, false);
img.rotate(90).mirror(true, false);
break;
case 8: // Rotate 270 CW
img.rotate(-270, false);
img.rotate(-270);
break;
default:
break;
Expand Down

0 comments on commit 0356849

Please sign in to comment.