Results 1 to 1 of 1

Thread: gzip compression image

  1. #1
    Administrator GumSlone's Avatar
    Join Date
    Mar 2005
    Location
    Mars, GumCity
    Posts
    1,495
    Thanks
    125
    Thanked 573 Times in 201 Posts
    Blog Entries
    2
    Rep Power
    10

    Default gzip compression image

    you remember the gzip image that i've used at besttop and other my sites which showed the compression percentage?

    many wapmasters have cloned it and still are still using it at their sites but results were not as nice as the original.

    so here is the original code. (c) gumslone

    PHP Code:
    <?php

    $num 
    $_GET['num'];
    $size imagettfbbox(60"/fonts/04B_03B.TTF"$num.'%');
    $xsize abs($size[0]) + abs($size[2]);
    $x4=29+$xsize;
    $im = @ImageCreate ($x411)
          or die (
    "Kann keinen neuen GD-Bild-Stream erzeugen");
    $background_color ImageColorAllocate ($im255255255);
    if (
    $num>0$text_color3 ImageColorAllocate ($im10023050);
     else 
    $text_color3 ImageColorAllocate ($im25500);
    Imagefilledrectangle ($im00649$background_color );
    ImageTTFText ($im6038$text_color3"/fonts/04B_03B.TTF","GZIP");
    Imageline ($im230239$text_color3);
    ImageTTFText ($im60268$text_color3"/fonts/04B_03B.TTF",$num.'%');
    Imagerectangle ($im00$x4-110$text_color3);
    header('Content-Type: image/PNG');
    ImagePNG ($im);
    imagedestroy($im);

    ?>

    for the ttf font you can search on google or use your own.
    Attached Thumbnails Attached Thumbnails gzip_image.png   gzip_image2.png  
    Advertise your mobile site for FREE with [Only registered and activated users can see links. Click Here To Register...]

    [Only registered and activated users can see links. Click Here To Register...]


  2. The Following 3 Users Say Thank You to GumSlone For This Useful Post:

    kesaz (30-06-11), Malka1 (19-07-10), REY619 (01-05-10)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Help! Image not seen
    By Leviathan73 in forum Coding Forum
    Replies: 0
    Last Post: 03-12-09, 17:05
  2. how to know the phone support GZIP or not
    By bijaybd in forum REQUEST FORUM
    Replies: 1
    Last Post: 03-11-09, 20:47
  3. Image 3d
    By subzero in forum Design - Templates - Graphics
    Replies: 6
    Last Post: 05-11-07, 16:03

Bookmarks

Posting Permissions

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

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19