Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've failed to get this code working:

(function() {
    // Creates a new canvas element and appends it as a child
    // to the parent element, and returns the reference to
    // the newly created canvas element


    function createCanvas(parent, width, height) {
        var canvas = {};
        canvas.node = document.createElement('canvas');
        canvas.context = canvas.node.getContext('2d');
        canvas.node.width = width || 100;
        canvas.node.height = height || 100;
        parent.appendChild(canvas.node);
        return canvas;
    }

    function init(container, width, height, fillColor) {
        var canvas = createCanvas(container, width, height);
        var ctx = canvas.context;
        // define a custom fillCircle method
        ctx.fillCircle = function(x, y, radius, fillColor) {
            this.fillStyle = fillColor;
            this.beginPath();
            this.moveTo(x, y);
            this.arc(x, y, radius, 0, Math.PI * 2, false);
            this.fill();
        };
        ctx.clearTo = function(fillColor) {
            ctx.fillStyle = fillColor;
            ctx.fillRect(0, 0, width, height);
        };
        ctx.clearTo(fillColor || "#ddd");

        // bind mouse events
        canvas.node.onmousemove = function(e) {
            if (!canvas.isDrawing) {
               return;
            }
            var x = e.pageX - this.offsetLeft;
            var y = e.pageY - this.offsetTop;
            var radius = 10; // or whatever
            var fillColor = '#ff0000';
            ctx.fillCircle(x, y, radius, fillColor);
        };
        canvas.node.onmousedown = function(e) {
            canvas.isDrawing = true;
        };
        canvas.node.onmouseup = function(e) {
            canvas.isDrawing = false;
        };
    }

    var container = document.getElementById('canvas');
    init(container, 200, 200, '#ddd');

})();

function hi(){
var canvas = document.getElementsByTagName('canvas');
var imageData = canvas.toDataURL();
    document.getElementById("his").innerHTML=imageData;
}

It's a little JavaScript code, which creates a little canvas in the div with the id of canvas.

And, I'm trying to make the image save, and write to a div with the id of his the saved image. NOW that's where the code stops working... I'd greatly appreciate your help, thanks! :)

share|improve this question
Why do you output the URL as innerHTML? – Bergi Feb 26 at 19:04
@bergi I thought that it's URL would be accessible in plain text. – user2049022 Feb 26 at 19:06
Yeah, it is, altough you better should use .textContent for that. – Bergi Feb 26 at 19:07
Whats .textContent ? – user2049022 Feb 26 at 19:08
show 6 more comments

2 Answers

up vote 1 down vote accepted

document.getElementsByTagName('canvas') returns a NodeList, not a single element. So use

function hi(){
    var canvas = document.getElementsByTagName('canvas')[0];
    imageData = canvas ? canvas.toDataURL() : "could not find a <canvas> element";
    document.getElementById("his").textContent = imageData;
}
share|improve this answer
THANK - YOU - SO - VERY MUCH!!! :) – user2049022 Feb 26 at 19:29
Still doesn't work, though... :| jsfiddle.net/kneDX/973 – user2049022 Feb 26 at 19:30
When I do exactly what you had in your example, I get this: jsfiddle.net/kneDX/974 – user2049022 Feb 26 at 19:32
And when I try with an img, I get this: jsfiddle.net/kneDX/973 – user2049022 Feb 26 at 19:32
Simple example doesn't work on JSFiddle: jsfiddle.net/kneDX/976 Don't forget to check your error console! – Bergi Feb 26 at 20:07
show 3 more comments

Image data URLs belong in image src attributes. Images don't have innerHTML.

share|improve this answer
I thought that it's URL would be accessible in plain text. – user2049022 Feb 26 at 19:07
Still doesn't work. Check this out: jsfiddle.net/kneDX/972 – user2049022 Feb 26 at 19:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.