elm-canvas
elm-canvas copied to clipboard
Making the canvas API accessible within Elm
Its really performant to turn canvas data into a 2D JavaScript array of rows and columns of pixels. Its unfortunately less performant to turn a 2D JavaScript array into an...
Since 0.19 the ability to freely use native modules has been removed. Apparently projects in [Elm Explorations](https://github.com/elm-explorations) are allowed to use native code. My question is: Is there a plan...
`FillStyle` parameter is a `Style` not a `Color`
Some of the context operations take a lot of parameters. Stuff like `Float Float Float Float` is hard to read. Lets make records that contain names for these params.
I was using Elm-Canvas in a project, when Elm-css started erroring with "document is not defined". My work around was adding this code: ```js var fakeDoc = { createElement: function(){...
It shouldnt
toDataUrl takes a string and a float, but the string and float represent the encoding, and the quality level. Some encodings dont have quality levels. Maybe.. ```elm type Encoding |...