I'm building an app for Windows Phone 8 that will be able to show the favicon of a website, but the problem is that, when the image is an icon, I get an exception telling me that the image type isn't supported.
I've tried to convert the image to png in the WCF service that my app uses, but it seems that both Azure and my other hosting service don't support the System.Drawing.Image
namespace.
Now I'm looking for a way to convert ico to png in the app, even if it means having a native lib, but I cannot find any lib that would do it.
Does anyone have a solution for this? I don't care if I have to do it in the app or in the service...
If I could make it work with Windows Phone 7 either would be better, but just Phone 8 would solve the issue...
Thank you all in advance!