diff --git a/tools/tools.go b/tools/tools.go index c8d2ec0..cb343dd 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -25,5 +25,5 @@ func ImageToPayload(i image.Image) string { // SVGToPayload create the string necessary to send an SVG // via a ESSetImage struct func SVGToPayload(svg string) string { - return "data:image/svg+xml;charset=utf8," + svg + return "data:image/svg+xml;charset=utf8;base64," + base64.StdEncoding.EncodeToString([]byte(svg)) }