Re: do I use fopen or fsockopen to get an image as a stream of bytes?
- From: Andy Hassall <andy@xxxxxxxxxxx>
- Date: Fri, 04 Nov 2005 17:51:24 +0000
On 4 Nov 2005 09:42:55 -0800, lkrubner@xxxxxxxxxxxxx wrote:
>How do I get an image like that, as a stream of bytes? Which function
>do I use?
Where are you getting it from?
What format is the image in?
You probably want a sequence of:
http://uk.php.net/file_get_contents - get the image from a file or URL
http://uk.php.net/imagecreatefromstring - create a GD image object
http://uk.php.net/manual/en/function.imagesx.php
http://uk.php.net/manual/en/function.imagesy.php
http://uk.php.net/manual/en/function.imagecolorat.php
- loop over all the pixels in the image, converting to whatever your
representation is (looks like hex representation of brightness level in a
greyscale image?)
--
Andy Hassall :: andy@xxxxxxxxxxx :: http://www.andyh.co.uk
http://www.andyhsoftware.co.uk/space :: disk and FTP usage analysis tool
.
- Follow-Ups:
- References:
- Prev by Date: do I use fopen or fsockopen to get an image as a stream of bytes?
- Next by Date: Re: PHP Security
- Previous by thread: do I use fopen or fsockopen to get an image as a stream of bytes?
- Next by thread: Re: do I use fopen or fsockopen to get an image as a stream of bytes?
- Index(es):
Relevant Pages
|