Discuz X3.2/X2.5缩略图添加水印方法_站长助手

时间:2023-08-05 22:10 浏览:0 评论:0
0
 
Discuz X3/X2.5默认开启缩略图的时候水印只添加到原图上面,而缩略图上面无法进行水印图的添加,今天在站帮网说下缩略图添加水印方法。
 
1、打开source\function\function_post.php
 
2、查找
$image->Watermark($_G['setting']['attachdir'].'/forum/'.$newattachfile[$aid], '', 'forum');
复制代码
在其代码上面添加
// 缩略图打水印
         if (file_exists($_G['setting']['attachdir'] . '/forum/' . $newattachfile[$aid] . '.thumb.jpg')) {
                    $image->Watermark($_G['setting']['attachdir'] . '/forum/' . $newattachfile[$aid] . '.thumb.jpg', '', 'forum');
                }
                // 缩略图打水印end
复制代码
3、查找
C::t('forum_attachment_unused')->delete($aid);
复制代码
在其代码上面添加
// 缩略图打水印
       if (file_exists($_G['setting']['attachdir'] . '/forum/' . $attach['attachment'] . '.thumb.jpg')) {
                $image->Watermark($_G['setting']['attachdir'] . '/forum/' . $attach['attachment'] . '.thumb.jpg', '', 'forum');
            }
            // 缩略图打水印结束
复制代码
修改好后上传覆盖即可。
1. 本站所有资源来源于用户上传或网络,仅作为参考研究使用,如有侵权请邮件联系站长!
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. discuz > Discuz X3.2/X2.5缩略图添加水印方法_站长助手

用户评论