Is there a way to slice an image into tiles using JavaScript in a web browser?
I want to provide users with the option to choose an image from a gallery on a webpage and then divide that image into 4 or 6 new tiles. The tiles would then be displayed in a table, allowing users to add descriptions to each one.
Currently, I am considering reloading tiles from the server after the user selects the image and number of tiles, but I am hoping to find a way to avoid reloading if possible.
Edit:
In response to KP's comment on browser support, I am looking for a solution that does not rely on HTML5 support, if feasible.