php文字生成图片保存,php图片保存到数据库
- 建站教程
- 2024-09-26 05:41:02
本文目录一览:
- 1、如何将文字用php转换成图片?
- 2、PHP文字生成图片
- 3、如何用php把文字转变成图片.也就是往网页输入文字.通过网站后台生成png图片
- 4、用php代码怎么以背景图片加上文字生成新的图片,然后在标题处绝对调用该图片?
- 5、php 给图片添加文字或图片 并实现保存,,急救!!
如何将文字用php转换成图片?
header ("Content-type: image/png");
function autowrap($fontsize, $angle, $fontface, $string, $width) {
// 这几个变量分别是 字体大小, 角度, 字体名称, 字符串, 预设宽度
$content = "";
// 将字符串拆分成一个个单字 保存到数组 letter 中
for ($i=0;$imb_strlen($string);$i++) {
$letter[] = mb_substr($string, $i,1,'utf-8');
}
foreach ($letter as $l) {
$teststr = $content." ".$l;
$testbox = imagettfbbox($fontsize, $angle, $fontface, $teststr);
// 判断拼接后的字符串是否超过预设的宽度
if (($testbox[2] $width) ($content !== "")) {
$content .= "n";
}
$content .= $l;
}
return $content;
}
$text = $_GET['text'];//传过来的要处理的文字
$text = autowrap(14, 0, "msyh.ttf", $text, 250); // 自动换行处理
$im = imagecreate(278,350);
$background = imagecolorallocate($im, 255, 0, 0);
imagecolortransparent($im,$background); //imagecolortransparent() 设置具体某种颜色为透明色,若注释
$A = "img/".$_GET['mo'].".png";
$black = imagecreatefromstring(file_get_contents($A));
$white = imagecolorallocate($black,0x66,0x66,0x66);
imagettftext($black,12,0,30,55,$white,"msyh.ttf",$text); //字体设置部分linux和windows的路径可能不同
imagepng($black);//文字生成的图
PHP文字生成图片
$out = decrypt($_REQUEST['num'], $CFG['crypt']);
改成
$out = iconv("gbk","utf-8",decrypt($_REQUEST['num'], $CFG['crypt']));
imagettftext($im, 12, 0, 100, 120, $black, $en_font,
改成
imagettftext($im, 12, 0, 7, 20, $clr, $fnt, $out); 参数你自己改了,我是贴一楼的参数,记得要上传好字体,弄好路径。
如何用php把文字转变成图片.也就是往网页输入文字.通过网站后台生成png图片
首先要确定你的环境支持GD库;
程序很简单:
$str = "测试一下";//输入的文字
header("Content-type: image/jpeg");
$im = imagecreate(100, 30) or die("Cannot Initialize new GD image stream");//图片大小
$str=iconv("gb2312","UTF-8",$str);
for($i=0;$i200;$i++) //加入干扰象素
{
$clr = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()%100 , rand()%50 , $clr);
}
//$str="sss";
$black = imagecolorallocate($im, 0, 0, 0);
$fnt = "c:windowsfontssimhei.ttf"; //字体文件
ImageTTFText($im, 15, 0, 10, 20, $black, $fnt, $str);
imagejpeg($im);
//imagepng($im);
imagedestroy($im);
用php代码怎么以背景图片加上文字生成新的图片,然后在标题处绝对调用该图片?
?php
ob_clean(); //清除输出缓存
header("Content-type:image/jpeg"); //设置输出类型
$img="images/test.jpg"; //背景图片名
if(isset($_GET["img"]))$img=$_GET["img"]; //也可以通过img参数传入
$im=imagecreatefromjpeg($img); //读入背景图片
$text="文字内容"; //要加上的文字内容
if(isset($_GET["text"]))$text=$_GET["text"]; //也可以通过text参数传入
$fontFile="xxx.ttf"; //字体文件名,必须要
$fontSize=36; //字体尺寸
$fontColor=ImageColorAllocate($im,0,0,0); //字体颜色,这里是黑色
$textAngle=0; //文字显示的角度,0表示水平显示
$textLeft=20; //文字显示的x坐标
$textTop=60; //文字显示的y坐标
imagefttext($im,$fontSize,$textAngle,$textLeft,$textTop,$fontColor,$fontFile,$text); //把文字覆盖到图片上
Imagejpeg($im); //输出图片
ImageDestroy($im); //销毁图片
?
把以上文字保存为php文件,比如 img.php
然后在需要调用图片的地方用 img src="https://www.fke6.com/html/img.php?img=背景图片文件路径text=要加上的文字"/ 来调用
比如 img src="https://www.fke6.com/html/img.php?img=images/back.jpgtext=你好"/
php 给图片添加文字或图片 并实现保存,,急救!!
简单说,这就是PHP的一个生成水印的功能了。
直接帖代码给你。并附上注释吧,应该能看懂。
?php
header("Content-type: image/jpeg"); //浏览器输出,如不需要可去掉此行
$im = @imagecreatefromjpeg('test.jpg'); //从图片建立文件,此处以jpg文件格式为例
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
$text = 'Testing...'; //要写到图上的文字
$font = 'arial.ttf'; //写的文字用到的字体。
$srcw=imagesx($im);
imagettftext($im, 20, 0, $srcw-210, 21, $grey, $font, $text);
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
imagettftext($im, 20, 0, 9, 19, $white, $font, $text);
imagepng($im);
imagedestroy($im);
?
php文字生成图片保存,php图片保存到数据库由讯客互联建站教程栏目发布,感谢您对讯客互联的认可,以及对我们原创作品以及文章的青睐,非常欢迎各位朋友分享到个人网站或者朋友圈,但转载请说明文章出处“php文字生成图片保存,php图片保存到数据库”