mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Port mosaic resizing logic to properly calculate the width and height of the result image.
This commit is contained in:
parent
e978380753
commit
97964ddb1c
1 changed files with 102 additions and 2 deletions
104
src/mosaic.ts
104
src/mosaic.ts
|
@ -44,9 +44,10 @@ export const handleMosaic = async (
|
||||||
path += `/${mosaicMedia[3]}`;
|
path += `/${mosaicMedia[3]}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const size = calcSize(mediaList.map(i => ({ width: i.width, height: i.height } as Size)));
|
||||||
return {
|
return {
|
||||||
height: mediaList.reduce((acc, media) => acc + media.height, 0),
|
height: size.height,
|
||||||
width: mediaList.reduce((acc, media) => acc + media.width, 0),
|
width: size.width,
|
||||||
formats: {
|
formats: {
|
||||||
jpeg: `${baseUrl}jpeg/${id}${path}`,
|
jpeg: `${baseUrl}jpeg/${id}${path}`,
|
||||||
webp: `${baseUrl}webp/${id}${path}`
|
webp: `${baseUrl}webp/${id}${path}`
|
||||||
|
@ -54,3 +55,102 @@ export const handleMosaic = async (
|
||||||
} as APIMosaicPhoto;
|
} as APIMosaicPhoto;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Port of https://github.com/FixTweet/mosaic/blob/feature/size-endpoint/src/mosaic.rs#L236
|
||||||
|
|
||||||
|
const SPACING_SIZE = 10;
|
||||||
|
/*
|
||||||
|
* This number will be multiplied by the height and weight
|
||||||
|
* if all combined images are over 2000 pixels in height or width.
|
||||||
|
* In my tests setting this to 0.5 increased performance by 4x (at the cost of 50% resolution)
|
||||||
|
* NOTE: This only works for when there's 4 images supplied.
|
||||||
|
*/
|
||||||
|
const BIG_IMAGE_MULTIPLIER = 1;
|
||||||
|
|
||||||
|
const calcSize = (images: Size[]): Size => {
|
||||||
|
if (images.length === 1) {
|
||||||
|
return images[0];
|
||||||
|
} else if (images.length === 2) {
|
||||||
|
const size = calcHorizontalSize(images[0], images[1]);
|
||||||
|
return size as Size;
|
||||||
|
} else if (images.length === 3) {
|
||||||
|
const size = calcHorizontalSize(images[0], images[1]);
|
||||||
|
const thirdSize = calcVerticalSize(size, images[2]);
|
||||||
|
|
||||||
|
if (thirdSize.secondHeight * 1.5 > size.height) {
|
||||||
|
return calcHorizontalSize(size, images[2]) as Size;
|
||||||
|
} else {
|
||||||
|
return thirdSize as Size;
|
||||||
|
}
|
||||||
|
} else if (images.length === 4) {
|
||||||
|
const top = calcHorizontalSize(images[0], images[1]);
|
||||||
|
const bottom = calcHorizontalSize(images[2], images[3]);
|
||||||
|
const all = calcVerticalSize(top, bottom);
|
||||||
|
|
||||||
|
const sizeMult = (all.width > 2000 || all.height > 2000) ? BIG_IMAGE_MULTIPLIER : 1;
|
||||||
|
return {
|
||||||
|
width: all.width * sizeMult,
|
||||||
|
height: all.height * sizeMult
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
throw new Error('Invalid number of images');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const calcHorizontalSize = (first: Size, second: Size): HorizontalSize => {
|
||||||
|
let small = second;
|
||||||
|
let big = first;
|
||||||
|
let swapped = false;
|
||||||
|
if (second.height > first.height) {
|
||||||
|
small = first;
|
||||||
|
big = second;
|
||||||
|
swapped = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const smallWidth = Math.round((big.height / small.height) * small.width);
|
||||||
|
return {
|
||||||
|
width: smallWidth + SPACING_SIZE + big.width,
|
||||||
|
height: big.height,
|
||||||
|
firstWidth: swapped ? smallWidth : big.width,
|
||||||
|
secondWidth: swapped ? big.width : smallWidth
|
||||||
|
} as HorizontalSize;
|
||||||
|
};
|
||||||
|
|
||||||
|
const calcVerticalSize = (first: Size, second: Size): VerticalSize => {
|
||||||
|
let small = second;
|
||||||
|
let big = first;
|
||||||
|
let swapped = false;
|
||||||
|
if (second.width > first.width) {
|
||||||
|
small = first;
|
||||||
|
big = second;
|
||||||
|
swapped = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const smallHeight = Math.round(big.width / small.width * small.height);
|
||||||
|
return {
|
||||||
|
width: big.width,
|
||||||
|
height: smallHeight + SPACING_SIZE + big.height,
|
||||||
|
firstHeight: swapped ? smallHeight : big.height,
|
||||||
|
secondHeight: swapped ? big.height : smallHeight
|
||||||
|
} as VerticalSize;
|
||||||
|
};
|
||||||
|
|
||||||
|
interface Size {
|
||||||
|
width: number;
|
||||||
|
height: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface HorizontalSize {
|
||||||
|
width: number;
|
||||||
|
height: number;
|
||||||
|
firstWidth: number;
|
||||||
|
secondWidth: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface VerticalSize {
|
||||||
|
width: number;
|
||||||
|
height: number;
|
||||||
|
firstHeight: number;
|
||||||
|
secondHeight: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue