You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
qgib
added
Bug
Either a bug report, or a bug fix. Let's hope for the latter!
Symbology
Related to vector layer symbology or renderers
labels
May 25, 2019
Author Name: Bo Thomsen (Bo Thomsen)
Original Redmine Issue: 19435
Affected QGIS version: 3.2
Redmine category:symbology
If i have a SLD file containing ttf references like this
..
se:PointSymbolizer
se:Graphic
se:Mark
<se:OnlineResource xlink:type="simple" xlink:href="ttf://MapInfo%20Miscellaneous" />
se:Formatttf</se:Format>
se:MarkIndex129</se:MarkIndex>
se:Fill
<se:SvgParameter name="fill">#000000</se:SvgParameter>
</se:Fill>
</se:Mark>
se:Size12</se:Size>
</se:Graphic>
</se:PointSymbolizer>
..
QGIS can't recognize the font reference (although the font is installed) and replace the font with a default font.
However if the SLD references looks like this
..
se:PointSymbolizer
se:Graphic
se:Mark
<se:OnlineResource xlink:type="simple" xlink:href="ttf://MapInfo Miscellaneous" />
se:Formatttf</se:Format>
se:MarkIndex129</se:MarkIndex>
se:Fill
<se:SvgParameter name="fill">#000000</se:SvgParameter>
</se:Fill>
</se:Mark>
se:Size12</se:Size>
</se:Graphic>
</se:PointSymbolizer>
..
i.e. with " " instead of "%20" it works. But AFAIK the html encoding inside the XML file is allowed and should be interpreted
The sld file is exported from GeoServer
The text was updated successfully, but these errors were encountered: