1、找到config.json,在配置文件中新增水印效果
/* 上傳圖片配置項(xiàng) */
"imageWater": "true",/*******************新增圖片水印設(shè)置 這里是新增*/
"imageActionName": "uploadsimage", /* 執(zhí)行上傳圖片的action名稱 */
"imageFieldName": "upfile", /* 提交的圖片表單名稱 * /* 上傳圖片配置項(xiàng) */
"imageWater": "true",/*******************新增圖片水印設(shè)置 這里是新增*/
"imageActionName": "uploadsimage", /* 執(zhí)行上傳圖片的action名稱 */
"imageFieldName": "upfile", /* 提交的圖片表單名稱 */復(fù)制代碼/復(fù)制代碼
?2、找到php目錄下的 action_uploads.php 文件
(1)在上傳文件的時(shí)候讀取配置文件
/* 上傳配置 */
$base64 = "uploads";
switch (htmlspecialchars($_GET['action'])) {
case 'uploadsimage':
$config = array(
"pathFormat" => $CONFIG['imagePathFormat'],
"maxSize" => $CONFIG['imageMaxSize'],
"allowFiles" => $CONFIG['imageAllowFiles']
);
$watermark = $CONFIG['imageWater']; //************************新增讀取參數(shù)
$fieldName = $CONFIG['imageFieldName'];
break;
case 'uploadsscrawl':
(2)在實(shí)例化的時(shí)候傳入配置參數(shù)
$up = new uploadser($fieldName, $config, $base64,$watermark); // 最后的參數(shù)是新增
3、找到php同級(jí)目錄下的類 uploadser.class.php?
?
(1)實(shí)例化類的時(shí)候新增私有屬性
class uploadser
{
private $water; //是否添加水印(屬性) *******************新增
(2)在構(gòu)造函數(shù)中添加傳遞的參數(shù),新增最后一個(gè)參數(shù)
public function __construct($fileField, $config, $type = "uploads",$watermark = false)
{
$this->water = $watermark;
$this->fileField = $fileField;
(3)在文件上傳完成之后 upFile方法 的最后添加
//移動(dòng)文件
if (!(move_uploadsed_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移動(dòng)失敗
$this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
} else { //移動(dòng)成功
$this->stateInfo = $this->stateMap[0];
}
//********************新增
if( $this->water ){
$this->watermark($this->filePath,$this->filePath);
}
(4)添加水印函數(shù)和檢測(cè)文件是否存在函數(shù)
/*
* 圖片加水印
* $source string 圖片資源
* $target string 添加水印后的名字
* $w_pos int 水印位置 具體看代碼
* $w_img string 水印圖片路徑
* $w_text string 顯示的文字
* $w_font int 字體大小
* $w_color string 字體顏色
*/
private function watermark($source, $target = '', $w_pos = '', $w_img = '', $w_text = 'zhiwuhao.com',$w_font = 10, $w_color = '#CC0000') {
$this->w_img = 'logo.png';//水印圖片的路徑
$this->w_pos = 9;
$this->w_minwidth = 400;//最少寬度
$this->w_minheight = 200;//最少高度
$this->w_quality = 80;//圖像質(zhì)量
$this->w_pct = 85;//透明度
$w_pos = $w_pos ? $w_pos : $this->w_pos;
$w_img = $w_img ? $w_img : $this->w_img;
if(!$this->check($source)) return false;
if(!$target) $target = $source;
$source_info = getimagesize($source);//圖片信息
$source_w = $source_info[0];//圖片寬度
$source_h = $source_info[1];//圖片高度
if($source_w < $this->w_minwidth || $source_h < $this->w_minheight) return false;
switch($source_info[2]) { //圖片類型
case 1 : //GIF格式
$source_img = imagecreatefromgif($source);
break;
case 2 : //JPG格式
$source_img = imagecreatefromjpeg($source);
break;
case 3 : //PNG格式
$source_img = imagecreatefrompng($source);
//imagealphablending($source_img,false); //關(guān)閉混色模式
imagesavealpha($source_img,true); //設(shè)置標(biāo)記以在保存 PNG 圖像時(shí)保存完整的 alpha 通道信息(與單一透明色相反)
break;
default :
return false;
}
if(!empty($w_img) && file_exists($w_img)) { //水印圖片有效
$ifwaterimage = 1; //標(biāo)記
$water_info = getimagesize($w_img);
$width = $water_info[0];
$height = $water_info[1];
switch($water_info[2]) {
case 1 :
$water_img = imagecreatefromgif($w_img);
break;
case 2 :
$water_img = imagecreatefromjpeg($w_img);
break;
case 3 :
$water_img = imagecreatefrompng($w_img);
imagealphablending($w_img,false);
imagesavealpha($w_img,true);
break;
default :
return;
}
}else{
$ifwaterimage = 0;
$temp = imagettfbbox(ceil($w_font*2.5), 0, '../../texb.ttf', $w_text); //imagettfbbox返回一個(gè)含有 8 個(gè)單元的數(shù)組表示了文本外框的四個(gè)角
$width = $temp[2] - $temp[6];
$height = $temp[3] - $temp[7];
unset($temp);
}
switch($w_pos) {
case 1:
$wx = 5;
$wy = 5;
break;
case 2:
$wx = ($source_w - $width) / 2;
$wy = 0;
break;
case 3:
$wx = $source_w - $width;
$wy = 0;
break;
case 4:
$wx = 0;
$wy = ($source_h - $height) / 2;
break;
case 5:
$wx = ($source_w - $width) / 2;
$wy = ($source_h - $height) / 2;
break;
case 6:
$wx = $source_w - $width;
$wy = ($source_h - $height) / 2;
break;
case 7:
$wx = 0;
$wy = $source_h - $height;
break;
case 8:
$wx = ($source_w - $width) / 2;
$wy = $source_h - $height;
break;
case 9:
$wx = $source_w - ($width+5);
$wy = $source_h - ($height+5);
break;
case 10:
$wx = rand(0,($source_w - $width));
$wy = rand(0,($source_h - $height));
break;
default:
$wx = rand(0,($source_w - $width));
$wy = rand(0,($source_h - $height));
break;
}
if($ifwaterimage) {
if($water_info[2] == 3) {
imagecopy($source_img, $water_img, $wx, $wy, 0, 0, $width, $height);
}else{
imagecopymerge($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $this->w_pct);
}
}else{
if(!empty($w_color) && (strlen($w_color)==7)) {
$r = hexdec(substr($w_color,1,2));
$g = hexdec(substr($w_color,3,2));
$b = hexdec(substr($w_color,5));
}else{
return;
}
imagestring($source_img,$w_font,$wx,$wy,$w_text,imagecolorallocate($source_img,$r,$g,$b));
}
switch($source_info[2]) {
case 1 :
imagegif($source_img, $target);
//GIF 格式將圖像輸出到瀏覽器或文件(欲輸出的圖像資源, 指定輸出圖像的文件名)
break;
case 2 :
imagejpeg($source_img, $target, $this->w_quality);
break;
case 3 :
imagepng($source_img, $target);
break;
default :
return;
}
if(isset($water_info)){
unset($water_info);
}
if(isset($water_img)) {
imagedestroy($water_img);
}
unset($source_info);
imagedestroy($source_img);
return true;
}
/**
* 檢測(cè)文件是否存在
* @param $image
* @return bool
*/
public function check($image){
return extension_loaded('gd') && preg_match("/\.(jpg|jpeg|gif|png)/i", $image, $m) && file_exists($image) && function_exists('imagecreatefrom'.($m[1] == 'jpg' ? 'jpeg' : $m[1]));
}
復(fù)制代碼
注意:以上代碼會(huì)提示一個(gè)錯(cuò)誤
imagealphablending() expects parameter 1 to be resource
imagesavealpha() expects parameter 1 to be resource
在這個(gè)位置:
這個(gè)錯(cuò)誤是因?yàn)?imagealphablending()
?和?imagesavealpha()
?這兩個(gè)函數(shù)需要傳遞一個(gè)圖像資源作為參數(shù),但是在代碼中傳遞的參數(shù)?$w_img
?是一個(gè)字符串(水印圖片的路徑),而不是一個(gè)圖像資源。
你需要將這兩個(gè)函數(shù)的參數(shù)改為?$water_img
,也就是水印圖片創(chuàng)建的圖像資源。同時(shí),你需要修改以下代碼:
$water_img = imagecreatefrompng($w_img);
imagealphablending($water_img, false);
imagesavealpha($water_img, true);
修改后的代碼如下:
$water_img = imagecreatefrompng($w_img);
imagealphablending($source_img, false);
imagesavealpha($source_img, true);
?文章來源:http://www.zghlxwxcb.cn/news/detail-523306.html
文章來源:在線字典 www.zxzidian.com文章來源地址http://www.zghlxwxcb.cn/news/detail-523306.html
到了這里,關(guān)于Ueditor上傳圖片自動(dòng)添加水印(通用圖片文件)的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!