-
Re: Is Anyone Designing Colour Fonts?
1 -
Re: SVG monochrome fonts.
Black & transparent bitmaps work with SVG-in-Opentype fonts with simple SVG image object: <image y="108" x="-35" id="image4496" xlink:href="data:image/png;&l…1 -
Re: SVG monochrome fonts.
You can use fill:context-fill; in SVG path style, and then in CSS: .color_font { color: #f00; /* For SVG glyphs */2 -
Re: Detect Opentype Features of a font file via Browser
If your server work with python, you can read all available GPOS/GSUB features in uploaded font (OTF, TTF, WOFF) with Compositor and small python file: #!/usr/bin/python <br>from compositor imp…4