Results 1 to 4 of 4

Thread: Imager

  1. #1
    Join Date
    Apr 2005
    Posts
    4,614
    Tokens
    1,290

    Latest Awards:

    Default Imager

    Anyone got a code for the Habbo Imager that doesnt have a big gap on the image? in other words, to crop?

    Thanls

  2. #2
    Join Date
    May 2007
    Location
    Scotland
    Posts
    294
    Tokens
    0

    Default

    Habbo-Paper.co.uk has one

    And I think Habboring.com has one also.
    Sam

  3. #3
    Join Date
    Oct 2006
    Posts
    2,918
    Tokens
    946
    Habbo
    Verrou

    Latest Awards:

    Default

    Use the search tool, there are heaps on cropped imagers (if you know what to search )
    Quote Originally Posted by Special-1k View Post
    How do you uninstall an internet? I want to uninstall my Google Chrome and
    get firefox but I never really got rid of an internet my dad usually did it for me.
    If you know how post below so I can do this.

  4. #4
    Join Date
    Aug 2006
    Location
    Manchester, UK
    Posts
    2,016
    Tokens
    141
    Habbo
    florx

    Latest Awards:

    Default

    Im pretty sure invent posted one in the coding section a while back and that has no big border. SEARCH THE DAMN FORUM!
    I found this on the forum in 2 seconds by searching for it! Thanks to Dentafrice for it :p
    PHP Code:
    <?
    // Multi Hotel Imager. 
    // Created by Dentafrice
     
    $default "co.uk"// Default hotel, no .  EX: ca, com, co.uk, com.sg
    $hotel $_GET[hotel];
    if(
    $hotel == "") {
    $hhotel $default;
    }else{
    $hhotel $hotel;
    }
    $habbo $_GET['name'];
    $domain "http://www.habbo.$hhotel";
    $content = @file_get_contents($domain '/home/'.$habbo);
    $div_start = @explode('<div class="profile-figure">'$content2);
    $div_end = @explode('</div>'$div_start[1], 2);
    $img = @trim($div_end[0]);
    $img = @preg_replace('/<img alt=\"(.*?)\" src=\"(.*?)\" \/>/''$2'$img);
    $imag $domain.$img;
    $im = @imagecreatefromgif($imag);
    header("Content-type: image/gif");
    @
    imagegif($im);
    @
    imagedestroy($im);
    ?>
    Last edited by Florx; 12-06-2007 at 07:41 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •