• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Share bbcode đóng dấu bản quyền vào ảnh johncms

Admin

Well-Known Member
Staff member
Administrator
Giới thiệu: Khi dùng bbcode này thì hình sẽ được đóng dấu bản quyền
(Chú ý: Không lạm dụng code bởi tốc độ xử lý sẽ giảm, đó cũng là lý do tại sau mình đưa vào bbcode)
+ Mở incfiles/bbcode.php
Tìm:
PHP:
$var = preg_replace('#\[COLOR=(.+?)\](.+?)\[/COLOR\]#is', '<font style="color:\1;">\2</font>', $var );
Thêm vào trên nó:
PHP:
$var = preg_replace('#\[cimg](.+?)\[/cimg]#is', '<img src="http://tuoitreit.vn/cimg.php?img=http://\1" alt="click" /><br/><a href="http://\1">Tải ảnh gốc</a><br/>', $var);
Chú ý:
Thay http://tuoitreit.vn thành tên wap bạn.
Tìm tiếp:
PHP:
$var = str_replace('[IMG ]http://', '[IMG ]', $var);
Thêm vào dưới nó:
PHP:
$var = str_replace('[cimg]http://', '[cimg]', $var);
+ Up file cimg.php lên root
+ Tìm 1 file logo.png up lên thư mục root làm con dấu
+ Save! Bây giờ bạn đã có thể test bằng cách sử dụng thẻ [cimg ]....[/cimg ]
Nếu không tải được thì bạn tạo tập tin cimg.php và dán code nào vào
Code:
<?
error_reporting(0);
$image = $_GET['img'];
$minwidth = 100;
$imagetype = getimagesize($image);
    switch ($imagetype['mime']) {
    case "image/jpeg":
        $im = imagecreatefromjpeg($image);
        break;
    case "image/png":
        $im = imagecreatefrompng($image);
        break;
    }


$imagewidth = imagesx($im);
if($imagewidth <= $minwidth){
header("Content-Type: image/gif"); 
$anh=fopen($image,"r"); 
fpassthru($anh); 
}
else {
$stamp = imagecreatefrompng('logo.png');
$marge_right = 5;
$marge_bottom = 5;
$sx = imagesx($stamp);
$sy = imagesy($stamp);


imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));


header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
}
?>
[down]1349797779autodongdau.zip[/down]
 

Facebook Comments

New posts New threads New resources

Back
Top