|
Posted by lkrubner on 11/04/05 21:42
Andy Hassall wrote:
> On 4 Nov 2005 09:42:55 -0800, lkrubner@geocities.com 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
That's awesome. I tried the following and I got a long list of numbers
8 digits long.
$myFileAsString =
file_get_contents("http://www.mycompany.com/product_images/composite_standard_sm/318_1_SM_100.jpg");
$image = imagecreatefromstring($myFileAsString);
$width = imagesx($image);
$height = imagesy($image);
echo "<p>the height is $height and the width is $width </p>";
for ($i=0; $i < $width; $i++) {
for ($r=0; $r < $height; $r++) {
$rgb = imagecolorat($image, $i, $r);
echo $rgb;
echo "<br>";
}
}
which gave me something like this:
16645629
16711422
16777215
16711422
16711422
16645629
16711422
16645629
16185078
15790320
15329771
15066599
14803427
14737634
14737634
14737634
14606048
14737634
15132392
15658736
16053494
16316666
16645629
16711422
but a lot more of that.
Navigation:
[Reply to this message]
|