第一步: 
打开source\function\function_post.php 
 
第二步: 
查找 
- $image->Watermark($_G['setting']
 
 - ['attachdir'].'/forum/'.$newattachfile[$aid], '', 'forum');
 
  复制代码 在其上面添加 
- // 缩略图打水印
 
 - if (file_exists($_G['setting']['attachdir'] . '/forum/' . $newattachfile[$aid] . 
 
 - '')) {
 
 - $image->Watermark($_G['setting']['attachdir'] . '/forum/' . 
 
 - $newattachfile[$aid] . '', '', 'forum');
 
 - }
 
 - // 缩略图打水印end
 
  复制代码 第三步 
查找 
- DB::delete('forum_attachment_unused', "aid='$aid'");
 
  复制代码 在其上面添加 
- // 缩略图打水印
 
 - if (file_exists($_G['setting']['attachdir'] . '/forum/' . $attach['attachment'] . 
 
 - '')) {
 
 - $image->Watermark($_G['setting']['attachdir'] . '/forum/' . $attach
 
 - ['attachment'] . '', '', 'forum');
 
 - }
 
 - // 缩略图打水印结束
 
  复制代码 
 
 
好用给个回复 
 
 |