Skip to content

Instantly share code, notes, and snippets.

@wharley
Created August 10, 2021 20:16
Show Gist options
  • Save wharley/a32de9596a502bc54e75076ae6ed125e to your computer and use it in GitHub Desktop.
Save wharley/a32de9596a502bc54e75076ae6ed125e to your computer and use it in GitHub Desktop.
const checkImageSize = (imageRealWidth, imageRealHeight, minImageSize) => {
return imageRealWidth <= minImageSize ||
imageRealHeight <= minImageSize ||
imageRealWidth < imageWidth ||
imageRealHeight < imageHeight
}
if (checkImageSize(imageRealWidth, imageRealHeight, minImageSize)) {
this.setState({ imageHideZoomIcon: true })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment