Open vinicius0026 opened 9 years ago
I had noticed some differences between the latest version of Caman and build used by the site. I suggest you try pulling the compiled version from the site or a CDN and give that a try.
As for solving the issue, the offending coffeescript certain does use a created image to work. (source/core/renderer.coffee:206)
# Loads an image onto the current canvas
loadOverlay: (layer, src) ->
img = document.createElement 'img'
img.onload = =>
...
I ran the above code getting the same error, do we have any solution?
This is the same issue I am dealing with. Am I missing something here?
Exact same issue. Here did anyone figure this out?
I'm trying to work with layers in Caman, with overlay images in each layer, but I'm having some issues.
My current attempt is like shown below:
But when I execute this code, I get the following error:
If I run the very simple example for node in Caman homepage (only setting the brightness), it works.
What am I missing?