关于系统如何添加水印的方法
打开后台公共文件 PublicController.class.php 里面的 _uploadPicture 方法
$real_path = $upload->rootPath. $file['savepath'].$file['savename'];
之后添加
$think_img->open($real_path);
$think_img ->water('./logo.png',9)-> save($upload->rootPath. $file['savepath'].$file['savename']);
水印参数自行调试就行了