ckeditor上传文件重命名并加水印配置方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-07 13:55:15 浏览: 评论:0
首先:我希望上传的文件根据日期来组织文件夹,请修改editoreditorfilemanagerconnectorsphp文件夹下的config.php文件,找到如下的内容:
- //Path to user files relative to the document root.
- $Config['UserFilesPath'] =
修改为:
- //Path to user files relative to the document root.
- $Config['UserFilesPath'] = '/uploadfiles/'.date("Ym")."/" ;
这样上传的文件就按照日期存放了,其次,重命名,请修改该文件夹下的io.php文件,找到如下代码:
- // Do a cleanup of the file name to avoid possible problems
- function SanitizeFileName( $sNewFileName )
- {
- global $Config ;
- $sNewFileName = stripslashes( $sNewFileName ) ;
- // Replace dots in the name with underscores (only one dot can be there... security issue).
- if ( $Config['ForceSingleExtension'] )
- $sNewFileName = preg_replace( '/\.(?![^.]*$)/', '_', $sNewFileName ) ;
- // Remove / | : ? * " < >
- $sNewFileName = preg_replace( '/\\|\/|\||\:|\?|\*|"|<|>/', '_', $sNewFileName );
- return $sNewFileName ;
- }
修改为如下代码:
- // Do a cleanup of the file name to avoid possible problems
- function SanitizeFileName( $sNewFileName )
- {
- global $Config ;
- $sNewFileName = stripslashes( $sNewFileName ) ;
- // Replace dots in the name with underscores (only one dot can be there... security issue).
- if ( $Config['ForceSingleExtension'] )
- $sNewFileName = preg_replace( '/\.(?![^.]*$)/', '_', $sNewFileName ) ;
- $sExtension = substr( $sNewFileName, ( strrpos($sNewFileName, '.') + 1 ) ) ;
- $sNewFileName = my_setfilename().'.'.$sExtension;
- return $sNewFileName ;
- }
- function my_setfilename(){
- $gettime = explode(' ',microtime());
- $string = 'abcdefghijklmnopgrstuvwxyz0123456789';
- $rand = '';
- for ($x=0;$x<12;$x++)
- $rand .= substr($string,mt_rand(0,strlen($string)-1),1);
- return date("ymdHis").substr($gettime[0],2,6).$rand;
- }
Fckeditor上传图片文件名重名及中文乱码解决方法
经测试Fckeditor2.6.6并没有解决上传文件中文名变为乱码的问题,这是由于Fckeditor实现上传功能时并没有将文件重命名,容易导致上传图片文件重名及乱码问题。
上传图片文件重名和乱码解决方法如下
打开editor/filemanager/connectors/php目录下commands.php,找到FileUpload函数,在
- $sExtension = substr( $sFileName, ( strrpos($sFileName, '.') + 1 ) ) ;
- $sExtension = strtolower( $sExtension ) ;
后添加
$sFileName = rand(0,100).".".$sExtension;,此处rand函数可根据需要自行改变重命名规则。
另一种上传图片文件名乱码解决方法为使用iconv函数对文件名进行编码转换,但仍然存在重名问题,所以针对Fckeditor上传图片文件名最好还是重命名。
Fckeditor上传图片添加水印功能
对于网站拥有者来说保护图片版权添加水印必不可少,我们可以利用PHP添加水印函数结合Fckeditor文件上传函数FileUpload实现图片添加水印功能,水印函数请参考PHP图片水印函数:支持以图片和文字方式添加水印一文,代码如下:
- function setWater($imgSrc,$markImg,$markText,$TextColor,$markPos,$fontType,$markType)
- {
- $srcInfo = @getimagesize($imgSrc);
- $srcImg_w = $srcInfo[0];
- $srcImg_h = $srcInfo[1];
- switch ($srcInfo[2])
- {
- case 1:
- $srcim =imagecreatefromgif($imgSrc);
- break;
- case 2:
- $srcim =imagecreatefromjpeg($imgSrc);
- break;
- case 3:
- $srcim =imagecreatefrompng($imgSrc);
- break;
- default:
- die("不支持的图片文件类型");
- exit;
- }
- if(!strcmp($markType,"img"))
- {
- if(!file_exists($markImg) || emptyempty($markImg))
- {
- return;
- }
- $markImgInfo = @getimagesize($markImg);
- $markImg_w = $markImgInfo[0];
- $markImg_h = $markImgInfo[1];
- if($srcImg_w < $markImg_w || $srcImg_h < $markImg_h)
- {
- return;
- }
- switch ($markImgInfo[2])
- {
- case 1:
- $markim =imagecreatefromgif($markImg);
- break;
- case 2:
- $markim =imagecreatefromjpeg($markImg);
- break;
- case 3:
- $markim =imagecreatefrompng($markImg);
- break;
- default:
- die("不支持的水印图片文件类型");
- exit;
- }
- $logow = $markImg_w;
- $logoh = $markImg_h;
- }
- if(!strcmp($markType,"text"))
- {
- $fontSize = 16;
- if(!emptyempty($markText))
- {
- if(!file_exists($fontType))
- {
- return;
- }
- }
- else {
- return;
- }
- $box = @imagettfbbox($fontSize, 0, $fontType,$markText);
- $logow = max($box[2], $box[4]) - min($box[0], $box[6]);
- $logoh = max($box[1], $box[3]) - min($box[5], $box[7]);
- }
- if($markPos == 0)
- {
- $markPos = rand(1, 9);
- }
- switch($markPos)
- {
- case 1:
- $x = +5;
- $y = +5;
- break;
- case 2:
- $x = ($srcImg_w - $logow) / 2;
- $y = +5;
- break;
- case 3:
- $x = $srcImg_w - $logow - 5;
- $y = +15;
- break;
- case 4:
- $x = +5;
- $y = ($srcImg_h - $logoh) / 2;
- break;
- case 5:
- $x = ($srcImg_w - $logow) / 2;
- $y = ($srcImg_h - $logoh) / 2;
- break;
- case 6:
- $x = $srcImg_w - $logow - 5;
- $y = ($srcImg_h - $logoh) / 2;
- break;
- case 7:
- $x = +5;
- $y = $srcImg_h - $logoh - 5;
- break;
- case 8:
- $x = ($srcImg_w - $logow) / 2;
- $y = $srcImg_h - $logoh - 5;
- break;
- case 9:
- $x = $srcImg_w - $logow - 5;
- $y = $srcImg_h - $logoh -5;
- break;
- default:
- die("此位置不支持");
- exit;
- }
- $dst_img = @imagecreatetruecolor($srcImg_w, $srcImg_h);
- imagecopy ( $dst_img, $srcim, 0, 0, 0, 0, $srcImg_w, $srcImg_h);
- if(!strcmp($markType,"img"))
- {
- imagecopy($dst_img, $markim, $x, $y, 0, 0, $logow, $logoh);
- imagedestroy($markim);
- }
- if(!strcmp($markType,"text"))
- {
- $rgb = explode(',', $TextColor);
- $color = imagecolorallocate($dst_img, $rgb[0], $rgb[1], $rgb[2]);
- imagettftext($dst_img, $fontSize, 0, $x, $y, $color, $fontType,$markText);
- }
- switch ($srcInfo[2])
- {
- case 1:
- imagegif($dst_img, $imgSrc);
- break;
- case 2:
- imagejpeg($dst_img, $imgSrc);
- break;
- case 3:
- imagepng($dst_img, $imgSrc);
- break;
- default:
- die("不支持的水印图片文件类型");
- exit;
- }
- imagedestroy($dst_img);
- imagedestroy($srcim);
- }
$imgSrc:目标图片,可带相对目录地址,
$markImg:水印图片,可带相对目录地址,支持PNG和GIF两种格式,如水印图片在执行文件mark目录下,可写成:mark/mark.gif
$markText:给图片添加的水印文字
$TextColor:水印文字的字体颜色
$markPos:图片水印添加的位置,取值范围:0~9
0:随机位置,在1~8之间随机选取一个位置
1:顶部居左 2:顶部居中 3:顶部居右 4:左边居中
5:图片中心 6:右边居中 7:底部居左 8:底部居中 9:底部居右
$fontType:具体的字体库,可带相对目录地址
$markType:图片添加水印的方式,img代表以图片方式,text代表以文字方式添加水印
代码注释:
第4~6行:获取目标图片的宽度和高度
第8~22行:根据图片类型调用不同的函数,获得操作图像标识符
GetImageSize函数知识点:GetImageSize不需要安装 GD度就可使用,其返回值数组有四个元素。索引值0是图片高度。索引值1是图片的宽度。索引值2是图片的文件格式,其值1为GIF格式、2为JPEG/JPG格式、3为PNG格式。索引值3为图片的高与宽字符串,height=xxx width=yyy。返回的图片宽度和高度单位都是像素(pixel)
第24~58行:当选择图片方式给目标图片添加水印时,获取水印图片的宽度和高度,通常情况都是网站的logo。如果目标图片比水印图片宽度或者高度小或者水印图片不存在,则跳出这个函数。
return语句知识点:直接return 表示什么都不返回,直接结束这个函数。也可以理解成返回 NULL。
第60~77行:当选择文字方式给目标图片添加水印时,首先设定水印文字的大小,默认我设置为16px,你可以根据需要自行调整字体大小。如果字体文件不存在,跳出函数,最后通过imagettfbbox函数获得此设定格式的文字的虚拟长宽。
imagettfbbox函数知识点:此函数返回一个含有8个单元的数组表示文本外框的四个角,索引值含义:0代表左下角 X 位置,1代表坐下角 Y 位置,2代表右下角 X 位置,3代表右下角 Y 位置,4代表右上角 X 位置,5代表右上角 Y 位置,6代表左上角 X 位置,7代表左上角 Y 位置。此函数同时需要GD 库和FreeType库的支持
max函数返回参数中数值最大的值。
第79~125行:根据设定的图片水印位置计算具体坐标值,你可以根据效果具体细化水印的位置。
第127~129行:新建一个和目标图片大小一致的图片。
注:由于imagecreatetruecolor函数范围的是一个黑色图片,所以如果你的目标图片是透明的,则生成的新图将不会是透明色。
第131~162行:根据图片或者文字方式,最终生成添加了水印的图片。
调用说明:
以函数调用方式调用即可,当然你也可以以类的方式封装,或者你也可以根据需要将此函数进一步细分模块也可以。当然你现在这样用也是没有任何问题的,我已测试过,请放心使用。
其他说明:
由于imagettftext和imagettfbbox函数需要GD库和FreeType库的支持,如果你的运行环境不支持GD库和FreeType库则文字方式就无法实现,你可以用imagestring函数实现给图片添加文字水印,同时设定下text方式下的$logow和$logoh值即可。
imagejpeg函数也可以设置合成的图片质量。
PHP图片加水印函数思路总结:
首先计算目标图片、水印图片以及文字的宽度和高度,在根据具体位置计算最终水印出现的位置信息,即X和Y值。最后合成图片,新的图片就添加了水印。
Tags: ckeditor 上传文件 重命名
- 上一篇:如何设置PHP上传文件大小限制
- 下一篇:PHP文件下载的小实例
相关文章
- ·PHP中Ckeditor+Ckfinder配置图片上传功能(2013-12-31)
- ·php ckeditor上传图片文件名乱码解决方法(2014-07-05)
- ·php ckeditor上传图片文件大小限制修改(2014-07-05)
- ·fckeditor上传文件按日期存放及重命名方法(2021-05-27)
- ·php utf8编码上传中文文件名出现乱码(2013-11-14)
- ·php中检测上传文件类型与上传图片大小代码(2013-11-14)
- ·CKEditor+CKFinder+php上传文件配置方法(2013-12-02)
- ·php上传文件与图片重命名方法总结(2014-01-06)
- ·如何设置PHP上传文件大小限制(2014-01-06)
- ·php获取上传文件名的文件类型(2014-01-15)
- ·PHP上传文件代码之入门代码(2014-02-27)
- ·PHP上传文件示例程序代码(适合初学者)(2014-07-17)
- ·php上传文件代码实例(2014-08-18)
- ·php验证上传文件类型(2014-08-25)
- ·PHP Ajax上传文件实例,ajaxfileupload.js(2014-08-27)
- ·一个PHP无刷新上传文件程序代码(2014-08-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)