Skip to content

Image Mosaic using C# - Library used in YearInImages.com

Notifications You must be signed in to change notification settings

viveksekar/ImageMosaic

 
 

Repository files navigation

ImageMosaic

Image Mosaic using C# - Library used in http://yearinimages.com website (powered by GettyImages images) Note that the library was customized to produce the yearinimages grid and there is no guarantee that it would produce similar results when generating using this library.

Example usage:

    var _mosaicGenerator = new MosaicGenerator();

    var srcImage = "..\\..\\..\\ImageMosaicTest\\144146014.jpg";
    var imageFolder = "..\\..\\..\\ImageMosaicTest\\TestImages\\entertainment";
    
    var _mosaic = _mosaicGenerator.Generate(srcImage,imageFolder );
    _mosaic.Image.Save(string.Format("c:\\Temp\\{0}.jpg", Guid.NewGuid().ToString("N")));
    _mosaic.Image.Dispose();

About

Image Mosaic using C# - Library used in YearInImages.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%