For Sale: Watermarking Script - $10

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • geeknik
    l337 h4x0r!#%
    • Feb 2005
    • 8364

    #1

    For Sale: Watermarking Script - $10

    This is a great watermarking script. All images served up on your webserver (specified via .htaccess file) are watermarked, but the original files aren't touched. Since it doesn't alter the image, you don't have to worry about image quality being affected. Why waste time watermarking images 1 at a time when all you need to do is upload the files via FTP and the server takes care of the rest! ICQ 1183251 if you're interested. You can see it in action @ www.ratethiswhore.com.
    hacker 4 hire.
  • woj
    <&(©¿©)&>
    • Jul 2002
    • 47880

    #2
    not a bad deal, good luck dude
    Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
    Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
    Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager

    Comment

    • Miguel T
      ♦ Web Developer ♦
      • May 2005
      • 12470

      #3
      Could you please send me an email to menz[at]netvisao.pt
      I am interested.

      Full Stack Webdeveloper: HTML5/CSS3, jQuery, AJAX, ElevatedX, NATS, MechBunny, Wordpress

      Comment

      • geeknik
        l337 h4x0r!#%
        • Feb 2005
        • 8364

        #4
        Originally posted by woj
        not a bad deal, good luck dude
        Thank you sir.

        Originally posted by AbsolutePorn
        Could you please send me an email to menz[at]netvisao.pt
        I am interested.
        Email sent!
        hacker 4 hire.

        Comment

        • Brujah
          Beer Money Baron
          • Jan 2001
          • 22157

          #5
          yeah hook me up

          Comment

          • geeknik
            l337 h4x0r!#%
            • Feb 2005
            • 8364

            #6
            1 copy sold. More to be had!
            hacker 4 hire.

            Comment

            • Oracle Porn
              Affiliate
              • Oct 2002
              • 24433

              #7
              I can swear this was given away for free on this board a few years back.


              Comment

              • geeknik
                l337 h4x0r!#%
                • Feb 2005
                • 8364

                #8
                Originally posted by Oracle Porn
                I can swear this was given away for free on this board a few years back.
                Okay. Are you implying something, or just stating a fact?
                hacker 4 hire.

                Comment

                • smutsellers
                  Confirmed User
                  • Sep 2006
                  • 351

                  #9
                  Code:
                  <?php  
                  
                  header('content-type: image/jpeg');  
                  
                  $watermark = imagecreatefrompng('watermark.png');  
                  $watermark_width = imagesx($watermark);  
                  $watermark_height = imagesy($watermark);  
                  $image = imagecreatetruecolor($watermark_width, $watermark_height);  
                  $image = imagecreatefromjpeg($_GET['src']);  
                  $size = getimagesize($_GET['src']);  
                  $dest_x = $size[0] - $watermark_width - 5;  
                  $dest_y = $size[1] - $watermark_height - 5;  
                  imagecopymerge($image, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height, 100);  
                  imagejpeg($image);  
                  imagedestroy($image);  
                  imagedestroy($watermark);  
                  
                  ?>
                  http://www.sitepoint.com/article/watermark-images-php
                  ICQ: 448118810

                  Comment

                  • Jet - BANNED FOR LIFE
                    So Fucking Banned
                    • Sep 2002
                    • 7515

                    #10
                    Originally posted by smutsellers
                    Code:
                    <?php  
                    
                    header('content-type: image/jpeg');  
                    
                    $watermark = imagecreatefrompng('watermark.png');  
                    $watermark_width = imagesx($watermark);  
                    $watermark_height = imagesy($watermark);  
                    $image = imagecreatetruecolor($watermark_width, $watermark_height);  
                    $image = imagecreatefromjpeg($_GET['src']);  
                    $size = getimagesize($_GET['src']);  
                    $dest_x = $size[0] - $watermark_width - 5;  
                    $dest_y = $size[1] - $watermark_height - 5;  
                    imagecopymerge($image, $watermark, $dest_x, $dest_y, 0, 0, $watermark_width, $watermark_height, 100);  
                    imagejpeg($image);  
                    imagedestroy($image);  
                    imagedestroy($watermark);  
                    
                    ?>
                    http://www.sitepoint.com/article/watermark-images-php

                    Comment

                    • geeknik
                      l337 h4x0r!#%
                      • Feb 2005
                      • 8364

                      #11
                      That's not what my script looks like at all. But thanks for the bump! Besides that, my script doesn't touch the original image at all, unlike what you just posted.
                      Last edited by geeknik; 02-17-2008, 03:23 PM.
                      hacker 4 hire.

                      Comment

                      • geeknik
                        l337 h4x0r!#%
                        • Feb 2005
                        • 8364

                        #12
                        Another copy sold. Anyone else?
                        hacker 4 hire.

                        Comment

                        Working...