Context: Favicons

I am writing a WordPress plugin to download favicons and also convert them to png :

http://plugins.trac.wordpress.org/browser/wp-favicons/trunk ( GPL2)

Icon Lib

Problem

In 1 out of 5.000 icons (the others work ok...) a problem occurs with the XOR functionality. See line 296 here: http://plugins.trac.wordpress.org/browser/wp-favicons/trunk/plugins/filters/inc/class.ico.php (Notice: Uninitialized string offset: 64) So the string expected is too small.

Example

An example is this icon: (taken from slatch.com)

Question

Does anybody know how to fix this? OR knows another good PHP Icon Class that lets me read .ico (all sorts of) via get_as_string instead of get_from_file which is better?

PS

I already read:

link|improve this question

1  
I've updated your question title and tagging to hopefully attract more attention. Can you post more example favicons? – Charles Mar 21 '11 at 3:06
1  
Is a solution using the GD library acceptable? – Christopher Manning Mar 30 '11 at 20:19
1  
When it fails the XOR op, it means that it's a PNG file already. Just save it as such. – Mark Tomlin Mar 30 '11 at 22:09
1  
Is it a possibility that the file itself is corrupted? I tried multiple tools and none of them were able to open the file. Browser shows it though... But may be because it just gracefully handles corruption, or something... – Serge Mar 31 '11 at 2:07
feedback

2 Answers

The example icon you posted is monochrome (1 BPP). Its possible the library does not support such a low color depth.

link|improve this answer
feedback

@edelwater

I might be mistaken, but isn't the new generation of ICO files really PNG's with a different extension? That's how I have created them in the past. I could understand converting other formats like jpeg to png and then changing the extension.

http://en.wikipedia.org/wiki/Favicon#Standardization

http://en.wikipedia.org/wiki/ICO_(file_format)#PNG_format

This isn't meant to be a answer but a reference.

link|improve this answer
1  
ICO is not always PNG format. Most browsers support using multiple image format types used for a favicon (with .ico extension), but ICO is its own image format. This adds ambiguity to the op's issue as the icons he is downloding could be of many formats. – Kevin Peno Mar 23 '11 at 19:25
yes... there are many different icons out there not only the new generation with the embedded PNG. – edelwater Mar 23 '11 at 19:45
1  
You would have to read the head of the file to see if it's an ico, png, of gif. (I don't think anyone would use a jpg as a ico.) and I'm really sure it's not supported. – Mark Tomlin Mar 30 '11 at 22:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.