等比例缩放尺寸怎么算?
等比列计算公式:
百分比缩放
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
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有