ID: 34253
Comment by: najath at onlnet dot com
Reported By: inny at core dot fetchnet dot org
Status: Assigned
Bug Type: COM related
Operating System: Windows 2000
PHP Version: 5.1.0RC1
Assigned To: wez
New Comment:
hi i am using 5.1 PHP and MYSQL
my project is to store images and retrive binary values and convert to
an image format again
i have inserted the binary values to the feild and i have retrived also
but always i am getting the binarys not the image. plesae help me
print ("<img src=". $row['bi']."/>");
Previous Comments:
------------------------------------------------------------------------
[2005-08-26 15:01:49] [EMAIL PROTECTED]
Assigned to maintainer.
------------------------------------------------------------------------
[2005-08-26 11:56:56] inny at core dot fetchnet dot org
"Amusingly" enough, the array_reduce method didn't work for PHP5. I
guess that makes sense though.
-- Oh don't worry, I'm having lots of fun (on my own) in my own little
thread already.
------------------------------------------------------------------------
[2005-08-26 11:16:57] inny at core dot fetchnet dot org
I was adding support for PHP4 to the script, which made me wonder: if
binary arrays are meant to be received like this, what would be the
fastest way to reformat them?
foreach ($content As $obj) {
// or foreach($content->value As $obj) in PHP4
$image .= chr($obj);
}
echo($image);
or maybe something like
function rchr($v, $w) {
$v .= chr($w);
return($v);
}
$image = array_reduce($content, rchr);
// or $image = array_reduce($content->value, rchr); in PHP4
or something else?
Thanks.
------------------------------------------------------------------------
[2005-08-25 18:37:36] inny at core dot fetchnet dot org
FYI, source of a now-operational version here:
http://demis.inny.org/temp/wms_working.php.txt
Non-operational script as .phps file:
http://demis.inny.org/temp/wms.phps
------------------------------------------------------------------------
[2005-08-25 18:31:46] inny at core dot fetchnet dot org
Description:
------------
I was translating the following script:
http://demis.inny.org/temp/wms.asp.txt
http://demis.inny.org/temp/wms.php.txt is a non-functional translation
I had at that time.
If $QueryString ($_SERVER['QUERY_STRING']) contained the proper
variables/values, the WMSServer would return a
byte-stream/array/whatever (I'm no genius at COM and such) containing a
map-image.
http://demis.inny.org/temp/wms.php.txt would return, instead of the
image, 8 question marks (????????). I solved this by changing
echo($content); into the following:
if (substr($contenttype, 0, 5) == 'image') {
$image = null;
foreach ($content As $obj) { // $obj will contain 1 byte each time,
echo'ing it would print a decimal which in turn represents an ASCII
value. hence chr();
$image .= chr($obj);
}
echo($image);
} else {
echo($content);
}
But this doesn't seem too resource-efficient to me (a run of foreach
for every byte), and I doubt it's an intended work-around (the ?'s
really got me puzzled, I'd have expected an error message).
Anyway, seeing as I needed to use chr(); with foreach, this seems
related to a fixed bug #15782: http://bugs.php.net/bug.php?id=15782
Maybe you were aware of all of this.. Maybe not. Cheers.
Reproduce code:
---------------
$WMSService = new COM("DemisWMSConnect.Service");
$MapServer = $WMSService->WMS($wms);
if (!is_object($MapServer)) {
dosomestuffand();
die();
} else {
$content = new VARIANT(null);
$contenttype = new VARIANT(null);
$return = $MapServer->WMSRequest($QueryString, $content,
$contenttype);
header('Content-type: '.$contenttype);
echo($content);
}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=34253&edit=1