我如何让 Konva 的 canvas 从右到左

How do I get Konva's canvas to go from right to left

我想使用 Text 和 TextPath 显示一些希伯来语文本。在普通的 HTML5 中,最好的方法似乎是将 canvas 上的 dir 属性设置为 rtl (HTML5 Canvas fillText with Right-to-Left string)。我如何在 Konva 中做到这一点?

const canvas = layer.getCanvas()._canvas;

canvas.setAttribute('dir', 'rtl');

http://jsbin.com/wezusafebi/edit?js,output