圖片等比例縮放的計算公式


等比列計算公式:
百分比縮放
const imgPect = (picture_width, picture_height, default_width, default_height) => {
  var widthRatio = default_width / picture_width
  var heightRatio = default_height / picture_height
  var ratio 
  widthRatio < heightRatio ? ratio = widthRatio : ratio = heightRatio
  var currentImg = { picture_width: parseInt(picture_width * ratio), picture_height: parseInt(picture_height * ratio)}
  return currentImg
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2026 CODEPRJ.COM