Get Icon Data

Get Icon Data

am 01.02.2008 06:07:34 von mark

I've managed to extract the url of a favicon on the web, but now I
need to extract the image data to produce something like

data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAF...

I can read the binary data just fine using file_get_contents() but
that's not what I need... does anyone know how to extract the data of
an image like that? I can't even seem to get the mime type, and
reading the file contents as text doesn't produce a string like that
either... it's all just weird characters. I want to pass that data
into .

Re: Get Icon Data

am 01.02.2008 06:32:54 von mark

On Jan 31, 9:07 pm, Mark wrote:
> I've managed to extract the url of a favicon on the web, but now I
> need to extract the image data to produce something like
>
> data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAF...
>
> I can read the binary data just fine using file_get_contents() but
> that's not what I need... does anyone know how to extract the data of
> an image like that? I can't even seem to get the mime type, and
> reading the file contents as text doesn't produce a string like that
> either... it's all just weird characters. I want to pass that data
> into .

I guess it should have been obvious that it was encoded in base64
(just figured that out). But still, how can I get the mime type?