aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSertonix <sertonix@posteo.net>2024-08-02 15:42:11 +0200
committerSertonix <sertonix@posteo.net>2024-08-02 15:56:58 +0200
commit685705f8259b7e2b21522d5b4d01e7e75e20b8e7 (patch)
tree5c6684919f5797ddc5c8dd4f9f21d3aea6479cfa
parentffc6ef237e25c71a181f6ec2d4045f4f5100ab1b (diff)
downloadwbg-685705f8259b7e2b21522d5b4d01e7e75e20b8e7.tar.gz
svg: honor --stretch option
-rw-r--r--main.c2
-rw-r--r--svg.c6
-rw-r--r--svg.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/main.c b/main.c
index f8ba7ac..6b9e138 100644
--- a/main.c
+++ b/main.c
@@ -94,7 +94,7 @@ render(struct output *output)
#if defined(WBG_HAVE_SVG)
if (!src) {
- src = svg_render(width * scale, height * scale);
+ src = svg_render(width * scale, height * scale, stretch);
is_svg = true;
}
#endif
diff --git a/svg.c b/svg.c
index b9d5d6e..a62793f 100644
--- a/svg.c
+++ b/svg.c
@@ -1,4 +1,5 @@
#include "svg.h"
+#include <math.h>
#include <stdlib.h>
#include <stdio.h>
@@ -31,7 +32,7 @@ svg_load(FILE *fp, const char *path)
}
pixman_image_t *
-svg_render(const int width, const int height)
+svg_render(const int width, const int height, bool stretch)
{
pixman_image_t *pix = NULL;
uint8_t *data = NULL;
@@ -42,8 +43,7 @@ svg_render(const int width, const int height)
double sx = width / (double)svg_image->width;
double sy = height / (double)svg_image->height;
-
- float s = sx > sy ? sy : sx;
+ double s = stretch ? fmax(sx, sy) : fmin(sx, sy);
float tx = (width - svg_image->width * s) / 2;
float ty = (height - svg_image->height * s) / 2;
diff --git a/svg.h b/svg.h
index 89a6253..ffc766f 100644
--- a/svg.h
+++ b/svg.h
@@ -5,5 +5,5 @@
#include <pixman.h>
bool svg_load(FILE *fp, const char *path);
-pixman_image_t *svg_render(const int width, const int height);
+pixman_image_t *svg_render(const int width, const int height, bool stretch);
void svg_free();