I write the c# windows program for convert the all image into .ico file.But the .ico only suited for favicon only not for folder image
Here is my code
Image theImage = Image.FromFile(textBox1.Text);
Bitmap theBitmap = new Bitmap(theImage, new Size(width, height));
Second line is use for convert the image into .ico file.
Anybody know how to solve this?