Skip to content

Instantly share code, notes, and snippets.

@Be1zebub
Created October 3, 2024 09:45
Show Gist options
  • Save Be1zebub/5a7e4adc821bfeec07715ff8134fef00 to your computer and use it in GitHub Desktop.
Save Be1zebub/5a7e4adc821bfeec07715ff8134fef00 to your computer and use it in GitHub Desktop.
Утилита для поиска целочисленного размера изображения, на вход подается близкая к желаемой ширина и соотношение сторон.
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