当前位置:首页 > PHP教程 > php上传下载 > 列表

ckeditor上传文件重命名并加水印配置方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-07 13:55:15 浏览: 评论:0 

首先:我希望上传的文件根据日期来组织文件夹,请修改editoreditorfilemanagerconnectorsphp文件夹下的config.php文件,找到如下的内容:

  1. //Path to user files relative to the document root. 
  2. $Config['UserFilesPath'] = 

修改为:

  1. //Path to user files relative to the document root. 
  2. $Config['UserFilesPath'] = '/uploadfiles/'.date("Ym")."/" ; 

这样上传的文件就按照日期存放了,其次,重命名,请修改该文件夹下的io.php文件,找到如下代码:

  1. // Do a cleanup of the file name to avoid possible problems 
  2. function SanitizeFileName( $sNewFileName ) 
  3. global $Config ; 
  4. $sNewFileName = stripslashes$sNewFileName ) ; 
  5. // Replace dots in the name with underscores (only one dot can be there... security issue). 
  6. if ( $Config['ForceSingleExtension'] ) 
  7.  $sNewFileName = preg_replace( '/\.(?![^.]*$)/''_'$sNewFileName ) ; 
  8. // Remove / | : ? * " < > 
  9. $sNewFileName = preg_replace( '/\\|\/|\||\:|\?|\*|"|<|>/''_'$sNewFileName ); 
  10. return $sNewFileName ; 

修改为如下代码:

  1. // Do a cleanup of the file name to avoid possible problems 
  2. function SanitizeFileName( $sNewFileName ) 
  3. global $Config ; 
  4. $sNewFileName = stripslashes$sNewFileName ) ; 
  5. // Replace dots in the name with underscores (only one dot can be there... security issue). 
  6. if ( $Config['ForceSingleExtension'] ) 
  7.  $sNewFileName = preg_replace( '/\.(?![^.]*$)/''_'$sNewFileName ) ; 
  8. $sExtension = substr$sNewFileName, ( strrpos($sNewFileName'.') + 1 ) ) ; 
  9. $sNewFileName = my_setfilename().'.'.$sExtension
  10. return $sNewFileName ; 
  11. function my_setfilename(){ 
  12. $gettime = explode(' ',microtime()); 
  13. $string = 'abcdefghijklmnopgrstuvwxyz0123456789'
  14. $rand = ''
  15. for ($x=0;$x<12;$x++) 
  16.  $rand .= substr($string,mt_rand(0,strlen($string)-1),1); 
  17. return date("ymdHis").substr($gettime[0],2,6).$rand

Fckeditor上传图片文件名重名及中文乱码解决方法

经测试Fckeditor2.6.6并没有解决上传文件中文名变为乱码的问题,这是由于Fckeditor实现上传功能时并没有将文件重命名,容易导致上传图片文件重名及乱码问题。

上传图片文件重名和乱码解决方法如下

打开editor/filemanager/connectors/php目录下commands.php,找到FileUpload函数,在

  1. $sExtension = substr$sFileName, ( strrpos($sFileName'.') + 1 ) ) ; 
  2. $sExtension = strtolower$sExtension ) ; 
  3.  

后添加

$sFileName = rand(0,100).".".$sExtension;,此处rand函数可根据需要自行改变重命名规则。

另一种上传图片文件名乱码解决方法为使用iconv函数对文件名进行编码转换,但仍然存在重名问题,所以针对Fckeditor上传图片文件名最好还是重命名。

Fckeditor上传图片添加水印功能

对于网站拥有者来说保护图片版权添加水印必不可少,我们可以利用PHP添加水印函数结合Fckeditor文件上传函数FileUpload实现图片添加水印功能,水印函数请参考PHP图片水印函数:支持以图片和文字方式添加水印一文,代码如下:

  1. function setWater($imgSrc,$markImg,$markText,$TextColor,$markPos,$fontType,$markType
  2.     $srcInfo = @getimagesize($imgSrc); 
  3.     $srcImg_w    = $srcInfo[0]; 
  4.     $srcImg_h    = $srcInfo[1]; 
  5.          
  6.     switch ($srcInfo[2])  
  7.     {  
  8.         case 1:  
  9.             $srcim =imagecreatefromgif($imgSrc);  
  10.             break;  
  11.         case 2:  
  12.             $srcim =imagecreatefromjpeg($imgSrc);  
  13.             break;  
  14.         case 3:  
  15.             $srcim =imagecreatefrompng($imgSrc);  
  16.             break;  
  17.         default:  
  18.             die("不支持的图片文件类型");  
  19.             exit;  
  20.     } 
  21.          
  22.     if(!strcmp($markType,"img")) 
  23.     { 
  24.         if(!file_exists($markImg) || emptyempty($markImg)) 
  25.         { 
  26.             return
  27.         } 
  28.              
  29.         $markImgInfo = @getimagesize($markImg); 
  30.         $markImg_w    = $markImgInfo[0]; 
  31.         $markImg_h    = $markImgInfo[1]; 
  32.              
  33.         if($srcImg_w < $markImg_w || $srcImg_h < $markImg_h
  34.         { 
  35.             return
  36.         } 
  37.              
  38.         switch ($markImgInfo[2])  
  39.         {  
  40.             case 1:  
  41.                 $markim =imagecreatefromgif($markImg);  
  42.                 break;  
  43.             case 2:  
  44.                 $markim =imagecreatefromjpeg($markImg);  
  45.                 break;  
  46.             case 3:  
  47.                 $markim =imagecreatefrompng($markImg);  
  48.                 break;  
  49.             default:  
  50.                 die("不支持的水印图片文件类型");  
  51.                 exit;  
  52.         } 
  53.              
  54.         $logow = $markImg_w
  55.         $logoh = $markImg_h
  56.     } 
  57.          
  58.     if(!strcmp($markType,"text")) 
  59.     { 
  60.         $fontSize = 16; 
  61.         if(!emptyempty($markText)) 
  62.         { 
  63.             if(!file_exists($fontType)) 
  64.             { 
  65.                 return
  66.             } 
  67.         } 
  68.         else { 
  69.             return
  70.         } 
  71.              
  72.         $box = @imagettfbbox($fontSize, 0, $fontType,$markText); 
  73.         $logow = max($box[2], $box[4]) - min($box[0], $box[6]); 
  74.         $logoh = max($box[1], $box[3]) - min($box[5], $box[7]); 
  75.     } 
  76.          
  77.     if($markPos == 0) 
  78.     { 
  79.         $markPos = rand(1, 9); 
  80.     } 
  81.          
  82.     switch($markPos
  83.     { 
  84.         case 1: 
  85.             $x = +5; 
  86.             $y = +5; 
  87.             break
  88.         case 2: 
  89.             $x = ($srcImg_w - $logow) / 2; 
  90.             $y = +5; 
  91.             break
  92.         case 3: 
  93.             $x = $srcImg_w - $logow - 5; 
  94.             $y = +15; 
  95.             break
  96.         case 4: 
  97.             $x = +5; 
  98.             $y = ($srcImg_h - $logoh) / 2; 
  99.             break
  100.         case 5: 
  101.             $x = ($srcImg_w - $logow) / 2; 
  102.             $y = ($srcImg_h - $logoh) / 2; 
  103.             break
  104.         case 6: 
  105.             $x = $srcImg_w - $logow - 5; 
  106.             $y = ($srcImg_h - $logoh) / 2; 
  107.             break
  108.         case 7: 
  109.             $x = +5; 
  110.             $y = $srcImg_h - $logoh - 5; 
  111.             break
  112.         case 8: 
  113.             $x = ($srcImg_w - $logow) / 2; 
  114.             $y = $srcImg_h - $logoh - 5; 
  115.             break
  116.         case 9: 
  117.             $x = $srcImg_w - $logow - 5; 
  118.             $y = $srcImg_h - $logoh -5; 
  119.             break
  120.         default:  
  121.             die("此位置不支持");  
  122.             exit
  123.     } 
  124.          
  125.     $dst_img = @imagecreatetruecolor($srcImg_w$srcImg_h); 
  126.          
  127.     imagecopy ( $dst_img$srcim, 0, 0, 0, 0, $srcImg_w$srcImg_h); 
  128.          
  129.     if(!strcmp($markType,"img")) 
  130.     { 
  131.         imagecopy($dst_img$markim$x$y, 0, 0, $logow$logoh); 
  132.         imagedestroy($markim); 
  133.     } 
  134.          
  135.     if(!strcmp($markType,"text")) 
  136.     { 
  137.         $rgb = explode(','$TextColor); 
  138.              
  139.         $color = imagecolorallocate($dst_img$rgb[0], $rgb[1], $rgb[2]); 
  140.         imagettftext($dst_img$fontSize, 0, $x$y$color$fontType,$markText); 
  141.     } 
  142.          
  143.     switch ($srcInfo[2])  
  144.     {  
  145.         case 1: 
  146.             imagegif($dst_img$imgSrc);  
  147.             break;  
  148.         case 2:  
  149.             imagejpeg($dst_img$imgSrc);  
  150.             break;  
  151.         case 3:  
  152.             imagepng($dst_img$imgSrc);  
  153.             break
  154.         default:  
  155.             die("不支持的水印图片文件类型");  
  156.             exit;  
  157.     } 
  158.          
  159.     imagedestroy($dst_img); 
  160.     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 上传文件 重命名

分享到: