I want to build a game which the user can be able to create for him a character and after the game will convert it to PNG file for example.
The user will choose the clothes of the character and will see it online, when he finish – he will click finish and get it as PNG file.
With which language program i can build it? it possible with JS? Can you give me any clue?
Thank you.
It seems that you can do it with HTML5 and JS using the Canvas element:
Canvas2Image : Saving Canvas data to image file
Note that currently this won’t work with Internet Explorer until IE9.
If you need to support IE, You should be able to do the interface in JS without much problem, and then use a server side language like PHP for generating the image.
Probably the best approach is using AJAX for getting the images for the character parts (clothes and so on), an then use it for sending the selected parts to the server which would return the composed image.