XImage.Raster
Features
Tech Specs
How-to C#
Pricing

C# Imaging Library
C# Raster - Convert Image to ICO in C#.NET


Online C# Guide for Converting Image to ICO in .NET Application





ICO image is a format that supports multi frame, which is usually used as icon in applications.


Convert RasterImage to ICO



Sample Code (convert single frame image to ico):

ConvertHandler.Convert("input.jpeg", @"output.ico");


Sample Code (convert multi-frame image to ico):

RasterImage img = new RasterImage("input.tiff");
img.Save(@"output.ICO");