SQL数据库中图像顶部的文本

| 所以我试图弄清楚该怎么做:http://www.hetemeel.com/einsteinform.php 以我自己的形象。我还需要弄清楚如何用从SQL数据库中获取文本替换文本框。任何帮助深表感谢。谢谢! :-)     
已邀请:
        尝试使用此脚本。
$sql = \"SELECT some_text FROM some_table LIMIT 1\";
$rs = mysql_query($sql) or die();
$arr = mysql_fetch_assoc($rs);

header (\"Content-type: image/png\");
$string = $arr[\'some_text\'];
// try changing this as well
$font = 4;
$width = imagefontwidth($font) * strlen($string) ;
$height = imagefontheight($font) ;
$im = imagecreatefrompng(\"/path/to/someimagefile\");
$x = imagesx($im) - $width ;
$y = imagesy($im) - $height;
$backgroundColor = imagecolorallocate ($im, 255, 255, 255);
$textColor = imagecolorallocate ($im, 0, 0,0);
imagestring ($im, $font, $x, $y,  $string, $textColor);
imagepng($im);
    
        首先,将该图像作为div的背景图像,对于图像中显示的文本,您可以使用CSS3将文本转换为看起来像使用以下方法所看到的方式:
-webkit-transform: rotate(15deg); /* rotate the text by 15 degree for chrome */
-moz-transform: rotate(15deg); /* for mozilla */
transform: rotate(15deg); /* for future, when css3 is standard and Opera */
并使用一种字体,使它感觉像“ Buxton Sketch”字体名称一样手写。 然后使用padding-left属性将此文本放置在图像中所需的位置。 我希望这会有用。     

要回复问题请先登录注册