diff options
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | svg.c | 6 | ||||
-rw-r--r-- | svg.h | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -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 @@ -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; @@ -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(); |