關(guān)于系統(tǒng)如何添加水印的方法
打開后臺(tái)公共文件 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']);
水印參數(shù)自行調(diào)試就行了