-
Notifications
You must be signed in to change notification settings - Fork 376
iOS API
Fabien Molinet edited this page Dec 17, 2015
·
12 revisions
On iOS images can be loaded from Internet or File.
Or from an URL. In this case the image is cached (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.