mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
Correct rotate of image using EXIF (#7422)
This commit is contained in:
parent
d2ee48977c
commit
6832110af4
|
@ -1,3 +1,5 @@
|
||||||
|
import EXIF from 'exif-js';
|
||||||
|
|
||||||
const MAX_IMAGE_DIMENSION = 1280;
|
const MAX_IMAGE_DIMENSION = 1280;
|
||||||
|
|
||||||
const getImageUrl = inputFile => new Promise((resolve, reject) => {
|
const getImageUrl = inputFile => new Promise((resolve, reject) => {
|
||||||
|
@ -28,23 +30,62 @@ const loadImage = inputFile => new Promise((resolve, reject) => {
|
||||||
}).catch(reject);
|
}).catch(reject);
|
||||||
});
|
});
|
||||||
|
|
||||||
export default inputFile => new Promise((resolve, reject) => {
|
const getOrientation = (img, type = 'image/png') => new Promise(resolve => {
|
||||||
if (!inputFile.type.match(/image.*/) || inputFile.type === 'image/gif') {
|
if (type !== 'image/jpeg') {
|
||||||
resolve(inputFile);
|
resolve(1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
loadImage(inputFile).then(img => {
|
EXIF.getData(img, () => {
|
||||||
|
const orientation = EXIF.getTag(img, 'Orientation');
|
||||||
|
resolve(orientation);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const processImage = (img, { width, height, orientation, type = 'image/png' }) => new Promise(resolve => {
|
||||||
const canvas = document.createElement('canvas');
|
const canvas = document.createElement('canvas');
|
||||||
|
[canvas.width, canvas.height] = orientation < 5 ? [width, height] : [height, width];
|
||||||
|
|
||||||
|
const context = canvas.getContext('2d');
|
||||||
|
|
||||||
|
switch (orientation) {
|
||||||
|
case 2:
|
||||||
|
context.translate(width, 0);
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
context.translate(width, height);
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
context.translate(0, height);
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
context.rotate(0.5 * Math.PI);
|
||||||
|
context.translate(1, -1);
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
context.rotate(0.5 * Math.PI);
|
||||||
|
context.translate(0, -height);
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
context.rotate(0.5, Math.PI);
|
||||||
|
context.translate(width, -height);
|
||||||
|
break;
|
||||||
|
case 8:
|
||||||
|
context.rotate(-0.5, Math.PI);
|
||||||
|
context.translate(-width, 0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
context.drawImage(img, 0, 0, width, height);
|
||||||
|
|
||||||
|
canvas.toBlob(resolve, type);
|
||||||
|
});
|
||||||
|
|
||||||
|
const resizeImage = (img, type = 'image/png') => new Promise((resolve, reject) => {
|
||||||
const { width, height } = img;
|
const { width, height } = img;
|
||||||
|
|
||||||
let newWidth, newHeight;
|
let newWidth, newHeight;
|
||||||
|
|
||||||
if (width < MAX_IMAGE_DIMENSION && height < MAX_IMAGE_DIMENSION) {
|
|
||||||
resolve(inputFile);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (width > height) {
|
if (width > height) {
|
||||||
newHeight = height * MAX_IMAGE_DIMENSION / width;
|
newHeight = height * MAX_IMAGE_DIMENSION / width;
|
||||||
newWidth = MAX_IMAGE_DIMENSION;
|
newWidth = MAX_IMAGE_DIMENSION;
|
||||||
|
@ -56,11 +97,31 @@ export default inputFile => new Promise((resolve, reject) => {
|
||||||
newHeight = MAX_IMAGE_DIMENSION;
|
newHeight = MAX_IMAGE_DIMENSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
canvas.width = newWidth;
|
getOrientation(img, type)
|
||||||
canvas.height = newHeight;
|
.then(orientation => processImage(img, {
|
||||||
|
width: newWidth,
|
||||||
|
height: newHeight,
|
||||||
|
orientation,
|
||||||
|
type,
|
||||||
|
}))
|
||||||
|
.then(resolve)
|
||||||
|
.catch(reject);
|
||||||
|
});
|
||||||
|
|
||||||
canvas.getContext('2d').drawImage(img, 0, 0, newWidth, newHeight);
|
export default inputFile => new Promise((resolve, reject) => {
|
||||||
|
if (!inputFile.type.match(/image.*/) || inputFile.type === 'image/gif') {
|
||||||
|
resolve(inputFile);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
canvas.toBlob(resolve, inputFile.type);
|
loadImage(inputFile).then(img => {
|
||||||
|
if (img.width < MAX_IMAGE_DIMENSION && img.height < MAX_IMAGE_DIMENSION) {
|
||||||
|
resolve(inputFile);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
resizeImage(img, inputFile.type)
|
||||||
|
.then(resolve)
|
||||||
|
.catch(() => resolve(inputFile));
|
||||||
}).catch(reject);
|
}).catch(reject);
|
||||||
});
|
});
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
"emoji-mart": "Gargron/emoji-mart#build",
|
"emoji-mart": "Gargron/emoji-mart#build",
|
||||||
"es6-symbol": "^3.1.1",
|
"es6-symbol": "^3.1.1",
|
||||||
"escape-html": "^1.0.3",
|
"escape-html": "^1.0.3",
|
||||||
|
"exif-js": "^2.3.0",
|
||||||
"express": "^4.16.2",
|
"express": "^4.16.2",
|
||||||
"extract-text-webpack-plugin": "^3.0.2",
|
"extract-text-webpack-plugin": "^3.0.2",
|
||||||
"file-loader": "^0.11.2",
|
"file-loader": "^0.11.2",
|
||||||
|
|
|
@ -2601,6 +2601,10 @@ execa@^0.7.0:
|
||||||
signal-exit "^3.0.0"
|
signal-exit "^3.0.0"
|
||||||
strip-eof "^1.0.0"
|
strip-eof "^1.0.0"
|
||||||
|
|
||||||
|
exif-js@^2.3.0:
|
||||||
|
version "2.3.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/exif-js/-/exif-js-2.3.0.tgz#9d10819bf571f873813e7640241255ab9ce1a814"
|
||||||
|
|
||||||
expand-brackets@^0.1.4:
|
expand-brackets@^0.1.4:
|
||||||
version "0.1.5"
|
version "0.1.5"
|
||||||
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
|
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
|
||||||
|
|
Loading…
Reference in a new issue