Files
scrypted/common/src/resolution-utils.ts
2021-10-11 19:32:56 -07:00

5 lines
191 B
TypeScript

export function fitHeightToWidth(actualWidth: number, actualHeight: number, requestedWidth: number) {
const h = Math.round((actualHeight / actualWidth) * requestedWidth);
return h;
}