diff --git a/src/image.c b/src/image.c index 8e56cae..61ca07c 100644 --- a/src/image.c +++ b/src/image.c @@ -47,7 +47,7 @@ void get_size_keep_aspect(int w, int h, int dw, int dh, int *ow, int *oh) { tmp_1 = floor(dh * ratio); tmp_2 = ceil(dh * ratio); - if (fabsf(ratio - (float)tmp_1 / dh) < fabsf(ratio - (float)tmp_1 / dh)) + if (fabsf(ratio - (float)tmp_1 / dh) < fabsf(ratio - (float)tmp_w / dh)) *ow = tmp_1 < 1 ? 1 : tmp_1; else *ow = tmp_2 < 1 ? 1 : tmp_2;