HTMLCanvasElement has no method 'toDataUrl'
Asked Answered
C

1

7

I am trying to fetch the dataUrl from the canvas to use is as css background-image on various elements. But i always get following error Uncaught TypeError: Object #<HTMLCanvasElement> has no method 'toDataUrl'

this is my test code

<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #c3c3c3;">
Your browser does not support the canvas element.
</canvas>
<script type="text/javascript">
  var c=document.getElementById("myCanvas");
  var ctx=c.getContext("2d");
  ctx.fillStyle="#FF0000";
  ctx.fillRect(0,0,150,75);
  alert(c.toDataUrl());
</script>
</body>
</html>

is it once again the security feature in disguise?, or am i simply stupid...

Thanks in advance

Curvature answered 22/4, 2012 at 12:59 Comment(3)
You can find the Mozilla Documentation Network pages for stuff like this with a google search for "MDN toDataUrl" - google is case-insensitive.Asis
Read the docs. Any docs. w3.org/TR/html5/the-canvas-element.html#dom-canvas-todataurlMisjoinder
this is what happens when you code for 20 hours straightCurvature
C
20

You have the function name incorrect. Watch the case:

alert(c.toDataURL());

DEMO

Cockneyfy answered 22/4, 2012 at 13:3 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.