Results 1 to 3 of 3

Thread: bytes to image

  1. #1
    Join Date
    Nov 2010
    Posts
    115
    Thanks
    27
    Thanked 0 Times in 0 Posts

    Default bytes to image

    Hi All,


    I am getting image using sockets but I received on bytes. how can I convert bytes to a image object using php

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    try:
    PHP Code:
    // assuming you've already gotten the image
    // and assigned it to the var $png
    // (and assuming it's a png - use appropriate content-type!)
    header("Content-Type: image/png");
    print 
    $png

  3. #3
    Join Date
    Nov 2010
    Posts
    115
    Thanks
    27
    Thanked 0 Times in 0 Posts

    Default

    is thr any way to print raw data that is coming from HTTP POST

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
  •