I am working on an application that allows a user to select multiple images kind of like an avatar creator. The class .hidden hides all of the unused images and I use javascript to allow the user to swap them out. I am trying to implement a save function so that the user can save their work.
<img name="blondeHair" src="blonde-hair.png">
<img name="darkHair" src="dark-hair.png" class="hidden">
<img name="tan-skin" src="tan-skin.png">
<img name="light-skin" src="light-skin.png" class="hidden">
<a href="save.php">
I have tried to use a pdf library such as pdfCreator but cant seem to make it work because the libraries do not seem to accept the img tag or the class names. Any help is appreciated. Thank you.