FFImageLoading icon indicating copy to clipboard operation
FFImageLoading copied to clipboard

Image loading, caching & transforming library for Xamarin and Windows

Results 115 FFImageLoading issues
Sort by recently updated
recently updated
newest added

## 💬 Questions and Help I have the following code in my controller: image = await ImageService.Instance.LoadFile(filePath) .WithCache(CacheType.All) .DownSample((int) width) .AsJPGStreamAsync(95).ConfigureAwait(false); In Android and iOS all is fine, but in...

## 🐛 Bug Report Using a CacheKeyFactory on images rendering inside a CollectionVIew (or other collection using recycling / virtualization) can cause incorrect images to load. ### Expected behavior Correct...

## 🐛 Bug Report When using the latest Visual Studio 16.5 on Windows 10 with Xamarin's Hot Restart enabled, ffimageloading throws `FFImageLoading.Exceptions.DownloadException: Zero length stream` error while trying to load...

## 🏗 Question I see it adds `;x` at the end of a URL. How can we customize that, for example, if we want to set it as `?width=100&height=0`? I...

We are getting the crash (System.ArgumentException: Key already in the list Parameter name: key) in ImageService.SetTaskForTarget (FFImageLoading.Work.IImageLoaderTask currentTask) and log in to the app center. Please help me to resolve...

## 🐛 Bug Report If I use `CachedImageRenderer.InitImageSourceHandler()` on iOS then my hamburger icon of the `MasterDetailPage` isn't shown at first. Only through taping on the approximate location brings the...

the attribute font-weight is not working on Android // normal on iOS, normal on Android style="font-family:'ArialMT', 'Arial', sans-serif;font-size:48px;" // bold on iOS, normal on Android -> bug style="font-family:'Arial-BoldMT', 'Arial', sans-serif;font-weight:700;font-size:48px;"...

I have a Xamarin Forms project and I was wondering is there the ability to determine whether a server side image has changed from when the image was cached, pulling...

The sample WPF project uses only formsappage as the container, whereas cachedimage inherits from xamarin. XML Forms. View instead of system Windows. Uielement, so it cannot be used as a...

### Description I'm trying to use in a svg to fill a star for rating. I build the svg string and use SvgImageSource.FromSvgString() to set the Image Source property. But,...