figcaption ejemplos bootstrap javascript jquery

javascript - ejemplos - getelementbyid



Texto a imagen en vuelo con javascript o jquery (2)

¿Hay alguna forma o método para convertir texto (cadena) a imagen con javascript o jquery? No puedo encontrar ninguna manera de hacer esto. ¿Que es lo mejor?

No quiero usar php o asp.net para hacer esto. Gracias por cualquier truco y ayuda.


Creando imagen desde string con php

<?php // Create a 100*30 image $im = imagecreate(100, 30); // White background and blue text $bg = imagecolorallocate($im, 255, 255, 255); $textcolor = imagecolorallocate($im, 0, 0, 255); // Write the string at the top left imagestring($im, 5, 0, 0, ''Hello world!'', $textcolor); // Output the image header(''Content-type: image/png''); imagepng($im); imagedestroy($im); ?>

más información here