I have written text on canvas using filltext(). Now in another function i want to retrieve that value as string. If anyone could help me please. Thanks in advance.
|
|
This w3c article might be of interest to you:
And here's an example built for accessibility:
So all you need to do is when the user enters text, store it within a div inside the canvas element. |
|||
|
|
|
When you write the text to the canvas, also add a custom property to the canvas object containing the text itself. When you want to check it, simply query that property. So:
And later,
|
|||
|
|
