uploadcare-widget-tab-effects
Version:
Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.
17 lines (14 loc) • 468 B
JavaScript
const getCropResize = (cropSettings, size) => {
const [width, height] = size
const downscale =
cropSettings.downscale && (width > cropSettings.preferedSize[0] || height > cropSettings.preferedSize[1])
const upscale =
cropSettings.upscale && (width < cropSettings.preferedSize[0] || height < cropSettings.preferedSize[1])
if (downscale || upscale) {
return cropSettings.preferedSize
}
else {
return null
}
}
export default getCropResize