Now sure how much I can help but here you go.. My solution is implemented using PHP/AJAX/jQuery/Kinetic.... though not done with the complete solution yet ; what i'm trying to achieve is that, a user fills a form and on submit, PHP passes the values to a kinetic canvas.. below is what I use to build a text layer..mind you, this is a javascript snippet with a little php to output the text string..
var companyMessage = new Kinetic.Text({
x: 5,
y: 35,
fill: 'transparent',
text: '<?php echo $coy_messg ?>', // php code wrapped between php tags
fontSize: 14,
fontFamily: 'Georgia',
textFill: '#555',
padding: 4,
align: 'center',
fontStyle: 'normal',
cornerRadius: 0,
draggable: true,
});
// add cursor styling
companyMessage.on('mouseover', function() {
document.body.style.cursor = 'move';
});
companyMessage.on('mouseout', function() {
document.body.style.cursor = 'default';
});
does this help?