根据长宽比和宽度计算图像/视频的高度
我的宽度:240 我的纵横比:2.40 我需要根据这两个变量获取高度。公式是什么?
I have a width: 240
I have aspect ratio: 2.40
I need to get the height based on those two variables. What's the formula?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
比例定义:
ratio = width / height
公式:
height = width /ratio = 240 / 2.40 = 100
Definition of the ratio:
ratio = width / height
Formula:
height = width / ratio = 240 / 2.40 = 100
计算 2:40 的示例。使用javascript编程语言。
example of calculating 2:40 . using javascript programming language.