diff options
author | sewn <sewn@disroot.org> | 2023-06-22 00:21:00 +0000 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2023-10-26 16:31:35 +0200 |
commit | 137457b06cb74c59ae0636ecc4c680360d4f81cb (patch) | |
tree | 1f6a384169b8e2e58c4e40beac33ef1e64f086e2 | |
parent | 61af8e87661b93cfefe77c083328fef962c4121d (diff) | |
download | wbg-137457b06cb74c59ae0636ecc4c680360d4f81cb.tar.gz |
always zoom into the image instead of stretching
-rw-r--r-- | main.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -91,8 +91,16 @@ render(struct output *output) double sx = (double)img_width / (width * scale); double sy = (double)img_height / (height * scale); + float s = sx > sy ? sy : sx; + sx = s; + sy = s; + + float tx = (img_width / sx - width) / 2 / sx; + float ty = (img_height / sy - height) / 2 / sy; + pixman_f_transform_t t; pixman_transform_t t2; + pixman_f_transform_init_translate(&t, tx, ty); pixman_f_transform_init_scale(&t, sx, sy); pixman_transform_from_pixman_f_transform(&t2, &t); pixman_image_set_transform(pix, &t2); |