Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post May 24, 2011 07:11 AM by Shakti Singh Tanwar
Member
3 Points
2 Posts
May 24, 2011 04:48 AM|LINK
I don't have any clue regarding ASP.NET, I am only good in Visual Basic.
Can anyone give me any idea on how to create an ASP.NET project that can convert a png image into icon?
Star
10870 Points
1827 Posts
May 24, 2011 07:11 AM|LINK
Bitmap gameTile = new Bitmap(System.Drawing.Image.FromFile("pathofImage")); var icon = Icon.FromHandle((gameTile).GetHicon()); FileStream fs =new FileStream("C:\\test.ico",FileMode.Create); icon.Save(fs); fs.Close();
VJPPaz
Member
3 Points
2 Posts
Convert PNG into ICO
May 24, 2011 04:48 AM|LINK
I don't have any clue regarding ASP.NET, I am only good in Visual Basic.
Can anyone give me any idea on how to create an ASP.NET project that can convert a png image into icon?
Shakti Singh...
Star
10870 Points
1827 Posts
Re: Convert PNG into ICO
May 24, 2011 07:11 AM|LINK
Bitmap gameTile = new Bitmap(System.Drawing.Image.FromFile("pathofImage")); var icon = Icon.FromHandle((gameTile).GetHicon()); FileStream fs =new FileStream("C:\\test.ico",FileMode.Create); icon.Save(fs); fs.Close();Shakti Singh Tanwar
.Net Trainer (MCP,MCAD.net,MCSD.net,MCTS,MCPD.net[web])