Created
October 3, 2024 09:45
-
-
Save Be1zebub/5a7e4adc821bfeec07715ff8134fef00 to your computer and use it in GitHub Desktop.
Утилита для поиска целочисленного размера изображения, на вход подается близкая к желаемой ширина и соотношение сторон.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local target_width = 180 | |
local aspect_ratio = 16 / 9 | |
local bounds = 32 | |
local function calc(w) | |
local h = w / aspect_ratio | |
if math.floor(h) == h then | |
print(w ..", ".. h) | |
return true | |
end | |
end | |
if calc(target_width) then return end | |
for i = 1, target_width do | |
if calc(target_width + i) then return end | |
if calc(target_width - i) then return end | |
end | |
print("none found!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment