John Wiggins
John Wiggins
Lovely: https://raphlinus.github.io/rust/skribo/text/2019/04/04/font-fallback.html
Copying from #767 so it's easier to find: >Having played with [mapping of "Han" to a CJK language] a bit more, we should only use [the locale-based guess] when it's...
Consider [libgrapheme](https://libs.suckless.org/libgrapheme/) or [utf8proc](https://github.com/JuliaStrings/utf8proc) for classifying graphemes in a string.
If you're curious what HTML Canvas does, here's some code that can be plugged into [CodePen](https://codepen.io/). HTML: ```HTML ``` JS: ```JavaScript const canvas = document.getElementById("canvas"); const ctx = canvas.getContext("2d"); ctx.fillStyle...
Sorry! I saw an empty branch [here](https://github.com/enthought/enable/branches/yours) and thought maybe I pushed a useless branch accidentally. I've re-added the branch.
I've re-added the branch. We should just merge this into the feature branch so that we stop deleting it when we see an empty branch 😆
See #556 for more details. Basically we'll need to do a bit of work to supply FreeType on Windows at build time if we want to remove it from kiva.
#556 was slightly misleading. I've since learned that Windows text rendering works fine, but there are issues with font engine caching in AGG which need to be worked around to...
Pyglet and VTK backends are gone (#570). Shall we just add the imports from `enable.tools.pyface.api` to `enable.tools.api`?
#251 is connected here. I believe the root issue is that `GraphicsContext.draw_image` is expecting a `GraphicsContext` instance as a possible argument. Unfortunately this is done in such a way which...