Hi friends,
I have accessed the following http://www.webservicex.net/genericbarcode.asmx
luckly i got the result too,but the result in the format of base64binary.
i dont know how to parse the result if any one knows and Please explain me how to use the base64binary and convert the encoded format into the image.
Thanks,
Praveen J
views:
249answers:
4
+1
A:
base64_decode
is the function you need. See base64_decode() doc page.
jschulenklopper
2010-05-27 08:46:43
+1
A:
Use the base64_decode
function. an example is here http://dean.edwards.name/weblog/2005/06/base64-ie/
bogdanvursu
2010-05-27 08:49:52
+1
A:
<?php
$data = <<<IMG
.... add your image base64 here.....
IMG;
header('Content-Type: image/jpeg');
print base64_decode(trim($data));
?>
msakr
2010-05-27 08:51:54