Uploaded Image with site URL

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Uploaded Image with site URL

    Hello,
    You may see that many sites use such an uploader that when you upload a picture before publishing it their site address is written at the corner of that image. they copyrighted uloaded images by their site address.
    Using some php image functions they may do it. I am searching that type of script.

    If you know any please post here or tell me the way. Thanks.
    Wait...
    sigpic

    #2
    This script are available on that forum and you may use sea script for uploading any file via url and direct. much more tools in sea script

    Comment


      #3
      maybe you should learn how to use class.upload.php..
      My Blog: http://jhommark.blogspot.com
      My Facebook: http://www.facebook.com/jhommark
      My Official Site: http://www.undergroundweb.tk
      My Community Site: http://undergroundwap.xtreemhost.com

      Comment


        #4
        so, i saw a lot of such scripts... but i forgotten links and its names.
        if you have need for drawing copyright into picture, read the manual about library GD2.
        p.s. and for uploading you may use copy()

        Comment


          #5
          Uploaded Image with site URL

          you can do it in different ways:

          PHP Code:
          $url $_GET['url'];
          $file basename($url); 
          $path './images/';
          copy($url$path.$file); 
          or
          PHP Code:
          $url $_GET['url'];
          $file basename($url);
          $contents file_get_contents($url); 
          $path './images/';
          file_put_contents($path.$file$contents); 
          Advertise your mobile site for FREE with AdTwirl

          Comment

          Working...
          X