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

首先:我希望上传的文件根据日期来组织文件夹,请修改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. {
  4. global $Config ;
  5. $sNewFileName = stripslashes( $sNewFileName ) ;
  6. // Replace dots in the name with underscores (only one dot can be there... security issue).
  7. if ( $Config['ForceSingleExtension'] )
  8.  $sNewFileName = preg_replace( '/\.(?![^.]*$)/', '_', $sNewFileName ) ;
  9. // Remove / | : ? * " < >
  10. $sNewFileName = preg_replace( '/\\|\/|\||\:|\?|\*|"|<|>/', '_', $sNewFileName );
  11. return $sNewFileName ;
  12. }

修改为如下代码:

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

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

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

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

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

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

后添加

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

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

Fckeditor上传图片添加水印功能

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

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

$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值。最后合成图片,新的图片就添加了水印。