-
php 图片水印中文乱码解决方法
php 图片水印中文乱码解决方法是要转入一款中文字体就以了,如果你在生成水印有中文时,又没载入相关的字体的话,那中文肯定会是乱码的,如果是英语字母那载不载入都没关系,代码如下:
- $name = iconv("gb2312","utf-8",www.phpfensi.com php粉丝网);
- $font = 'simhei.ttf';//水印字体
- $im = imagecreatefromjpeg("test.jpg");//载入图片
- $black = imagecolorallocate($im, 0, 0, 0);//设置颜色
- imagettftext($im, 12, 0, 320, 84, $black, $font, $name);//打印水印
- imagepng($im);//输出图片,如果要保存加个保存路径和文件名,如imagepng($im,'test1.jpg'); //开源代码phpfensi.com
- imagedestroy($im);//清空缓存
下面来看一款生成水印文字函数,代码如下:
- function str2pic ($string,$source,$destination="",$f,$fontsize=10,$shadowcolor="#ffffff",$f,$x=10,$y=10) {
- //header('content-type:image/png');
- $pi=pathinfo($source);
- $pie=$pi[extension];#获取扩展名
- if(eregi("jpg|jpeg",$pie))$im=@imagecreatefromjpeg($source);
- if(eregi("gif",$pie))$im=@imagecreatefromgif($source);
- if(eregi("png",$pie))$im=@imagecreatefrompng($source);
- $col1=hex2dec($shadowcolor);#阴影颜色
- $col2=hex2dec($fontcolor);#字体颜色
- $col1=imagecolorallocate($im,$col1[0],$col1[1],$col1[2]);
- $col2=imagecolorallocate($im,$col2[0],$col2[1],$col2[2]);
- imagettftext($im,$fontsize,0,$y+1,$x+1,$col1,$fonturl,$string);
- imagettftext($im,$fontsize,0,$y,$x,$col2,$fonturl,$string);
- imagejpeg($im);
- if($destination)imagejpeg($im,$destination);
- imagedestroy($im);
- }
- function hex2dec($hexcolror) {#十六进制颜色转换成10进制颜色
- preg_match_all("/([0-f]){2,2}/i",$hexcolror,$matches);
- if(count($matches[0])==3){
- $rr=hexdec($matches[0][0]);
- $gg=hexdec($matches[0][1]);
- $bb=hexdec($matches[0][2]);
- }
- return array($rr,$gg,$bb);
- }
- ?>
- <?php
- str2pic("[url=http://www.phpfensi.com]www.phpfensi.com","winter.jpg","winter2.jpg","simhei.ttf",10,"ffffff","330099",10,10[/url]);
- ?>
原文链接:http://www.phpfensi.com/php/20140819/4476.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式