Some people want to hide their text into image for any reason. As example, to avoid spambot steal their email address, or to generate dynamic images content. Its simply done with PHP and GD Library. See this simple function: function imgfromstring($string){ $font = 5; //dynamic size of image. to fit your text. $width = ImageFontWidth($font) […]
↧