Skip to content

FFImageLoading 2.2.8

Compare
Choose a tag to compare
@daniel-luberda daniel-luberda released this 30 Jan 17:37
· 816 commits to master since this release

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 to Stream instead Views
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