about summary refs log tree commit diff
path: root/src/view/com/modals/crop-image/cropImageUtil.ts
blob: 303d15ba5b08bfaf3a30a5b4f7bb404eb066fe6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const calculateDimensions = (
  maxWidth: number,
  originalHeight: number,
  originalWidth: number,
) => {
  const aspectRatio = originalWidth / originalHeight
  const newHeight = maxWidth / aspectRatio
  const newWidth = maxWidth
  return {
    width: newWidth,
    height: newHeight,
  }
}