根据长宽比和宽度计算图像/视频的高度

发布于 2024-09-14 06:49:03 字数 48 浏览 5 评论 0原文

我的宽度: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

度的依靠╰つ 2024-09-21 06:49:03

比例定义:

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

街道布景 2024-09-21 06:49:03

计算 2:40 的示例。使用javascript编程语言。

var width = 240 ;
var rat1 = 2;
var rat2 = 40;

var ratio  = width / rat1;
var calculated_height = ratio * rat2;

example of calculating 2:40 . using javascript programming language.

var width = 240 ;
var rat1 = 2;
var rat2 = 40;

var ratio  = width / rat1;
var calculated_height = ratio * rat2;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文