I am looking for a solution to save canvas image as WP8 lockscreen background using Cordova/Phonegap? Is it even possible?
I know already that I should add Lockscreen extension to app manifest file:
<Extension ExtensionName="LockScreen_Background" ConsumerID="{111DFF24-AA15-4A96-8006-2BFF8122084F}" TaskID="_default" />
And in html file let's say we have:
canvas=document.getElementById('canvas');
canvasData=canvas.toDataURL();
What then?