1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#include "svg.h"
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <nanosvg/nanosvgrast.h>
#define LOG_MODULE "svg"
#define LOG_ENABLE_DBG 0
#include "log.h"
#include "stride.h"
struct NSVGimage *svg_image = NULL;
struct NSVGrasterizer *rast = NULL;
bool
svg_load(FILE *fp, const char *path)
{
svg_image = nsvgParseFromFile(path, "px", 96);
if (svg_image == NULL)
return false;
if (svg_image->width == 0 || svg_image->height == 0) {
LOG_DBG("%s: width and/or heigth is zero, not a SVG?", path);
nsvgDelete(svg_image);
svg_image = NULL;
return false;
}
rast = nsvgCreateRasterizer();
if (rast == NULL)
return false;
return true;
}
pixman_image_t *
svg_render(const int width, const int height, bool stretch)
{
pixman_image_t *pix = NULL;
uint8_t *data = NULL;
int stride = stride_for_format_and_width(PIXMAN_a8b8g8r8, width);
if (!(data = calloc(1, height * stride)))
return NULL;
double sx = width / (double)svg_image->width;
double sy = height / (double)svg_image->height;
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;
nsvgRasterize(rast, svg_image, tx, ty, s, data, width, height, stride);
pix = pixman_image_create_bits_no_clear(PIXMAN_a8b8g8r8, width,
height, (uint32_t *)data, stride);
if (pix == NULL) {
LOG_ERR("failed to render svg image");
free(data);
return NULL;
}
/* Copied from fuzzel */
/* Nanosvg produces non-premultiplied ABGR, while pixman expects
* premultiplied */
for (uint32_t *abgr = (uint32_t *)data;
abgr < (uint32_t *)(data + (size_t)width * (size_t)height * 4);
abgr++) {
uint8_t alpha = (*abgr >> 24) & 0xff;
uint8_t blue = (*abgr >> 16) & 0xff;
uint8_t green = (*abgr >> 8) & 0xff;
uint8_t red = (*abgr >> 0) & 0xff;
if (alpha == 0xff)
continue;
if (alpha == 0x00)
blue = green = red = 0x00;
else {
blue = blue * alpha / 0xff;
green = green * alpha / 0xff;
red = red * alpha / 0xff;
}
*abgr = (uint32_t)alpha << 24 | blue << 16 | green << 8 | red;
}
return pix;
}
void
svg_free()
{
if (svg_image != NULL)
nsvgDelete(svg_image);
if (rast != NULL)
nsvgDeleteRasterizer(rast);
}
|