FFImageLoading 2.2.8
Complete history of changes available here: v2.2.7...v2.2.8
Features
- Stream handling optimizations, introduced
StreamChecksumsAsKeys
configuration property. - Implemented
AsPNGStreamAsync
,AsJPGStreamAsync
methods for loading images toStream
insteadViews
var outputStream = await ImageService.Instance
.LoadUrl("http://domain.com/image.jpg")
.Transform(new SomeTransformation())
.AsJPGStreamAsync(quality: 80);
Fixes
- Fixed occasional null exception
- Tuned SchedulerMaxParallelTasks default value
- Download cache - Use ReadAsByteArrayAsync when no ProgressDownload is needed #449
- Fixed #466
- SVG: Windows UAP nuspec dependencies fixes
- #463 Android BlurredTransformation fixes
- Modified initial image loading task TaskCreationOptions #439