Results 26 comments of chenrensong

最新版本已经做了这方面的优化

已经添加MD5CacheGenerator,还加了其他SHA256、SHA512等算法的Generator

``` c# ImageLoader.Register("test", new ImageConfig.Builder() { CacheMode = ImageLib.Cache.CacheMode.MemoryAndStorageCache, MemoryCacheImpl = new LRUCache(), StorageCacheImpl = new LimitedStorageCache(ApplicationData.Current.LocalFolder, "cache1", new SHA1CacheGenerator(), 1024 * 1024 * 1024) }.AddDecoder().AddDecoder().Build()); ```

可以参考 [GifDecoder](https://github.com/chenrensong/ImageLib.UWP/blob/master/ImageLib.Gif/GifDecoder.cs) 这个类

you can try [PuppeteerAot](https://github.com/chenrensong/PuppeteerAot) ,this library is support for aot

> > [chenrensong](/chenrensong) > > Can you convert NewtonSoft.Json to System.Text.Json for selenium? Can you provide selenium project url?