-
Notifications
You must be signed in to change notification settings - Fork 374
iOS API
Fabien Molinet edited this page Dec 19, 2015
·
12 revisions
On iOS images can be loaded from Internet or File.
When the image is loaded from internet the image is cached on disk (by default 30 days but there is an optional TimeSpan so you can choose yours).
ImageService.LoadUrl(urlToImage).Into(_imageView);when you want to load the image from a file or application bundle:
ImageService.LoadFile(fullPathToImage).Into(_imageView);Remark: on iOS both ImageService.LoadFileFromApplicationBundle and ImageService.CompiledResource have the same effect as ImageService.LoadFile.
WebP is supported on iOS using WebP.Touch (included as a Nuget dependency). WebP.Touch is a wrapper around official WebP lib from Google. Requested URL or requested file must end with .webp to be correctly decoded.