vote up 0 vote down star

Hi,

In my canvas element,i want to add a draggable text over an image.User should able to move it within the canvas area.I could add text by using some API functions, but i have no idea of movable text.Do i need to use DIV tag to contain text ?,But the problem is, finally i need to save the canvas as an image file, so ordinary DIV tag over canvas will not be saved.

I would really like to hear your comments.

Thanks,

Selvam

flag

3 Answers

vote up 0 vote down

You could use SVG and some text elements. In SVG, each element is a DOM element so you could attach mouse events to it, for instance.

link|flag
vote up 0 vote down

Hi, thanks for your response,

But i could not understand you.How can text drawn on the canvas be moved.Isn't fixed to its position.I may use clearRect but that removes the background image as well,right?.

Can u explain it a bit more as i am just a beginner of canvas element.

link|flag
vote up 1 vote down

You should use the standard text drawing functions, but keep a record of the position in a variable — then when the text is dragged (which you can calculate using its size), you can draw it at the new position (calculated using the mouse coordinates).

link|flag
1  
And of course the area where the old text was will need to be redrawn – olliej Jul 25 at 21:10

Your Answer

Get an OpenID
or

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