aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsewn <sewn@disroot.org>2023-06-22 00:21:00 +0000
committerDaniel Eklöf <daniel@ekloef.se>2023-10-26 16:31:35 +0200
commit137457b06cb74c59ae0636ecc4c680360d4f81cb (patch)
tree1f6a384169b8e2e58c4e40beac33ef1e64f086e2
parent61af8e87661b93cfefe77c083328fef962c4121d (diff)
downloadwbg-137457b06cb74c59ae0636ecc4c680360d4f81cb.tar.gz
always zoom into the image instead of stretching
-rw-r--r--main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.c b/main.c
index 6e938f0..19a9711 100644
--- a/main.c
+++ b/main.c
@@ -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);