Nice!
On Mon, Apr 23, 2018 at 3:41 AM, Steven Wiley <steven.wi...@gmail.com> wrote: > I refactored and enhanced the raster package from the golang translation > of freetype, <https://github.com/golang/freetype> > It'd be a bunch of work, but you might consider basing off of golang.org/x/image/vector instead: 1. Its technique is based on "Inside the fastest font renderer in the world" at https://medium.com/@raphlinus/inside-the-fastest-font-renderer-in-the-world-75ae5270c445 although rasterizing SVG images might perform differently than rasterizing font glyphs. Both are vector graphics, but SVG images often have multiple, overlapping shapes while font glyphs are typically simpler. There's also https://github.com/golang/exp/blob/master/shiny/iconvg/internal/gradient/gradient.go. It's currently pretty slow, as I wanted to get the API right before optimizing the implementation, then haven't really had the free time to work on it since. But you might find it (and IconVG in general) interesting. 2. Its license is the Go license (i.e. BSD-like, https://github.com/golang/image/blob/master/LICENSE), not the Freetype-or-GPL2+ license ( https://github.com/golang/freetype/blob/master/LICENSE). OTOH, if you really want GPL3, then perhaps golang/freetype is a better foundation. Disclaimer: I am not a laywer, this is not legal advice, etc. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.