init: upload

This commit is contained in:
MarkusJoe
2022-09-02 20:56:16 +08:00
commit b4958755a2
16 files changed
+613

No files matched your search

+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="{{ g_width }}" height="{{ g_height }}" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
{% for value in context %}
<image x="{{ value.position }}" y="0" width="{{ value.width }}" height="{{ value.height }}"
xlink:href="data:image/gif;base64,{{ value.base64 }}"></image>
{% endfor %}
</g>
</svg>

After

Width:  |  Height:  |  Size: 445 B