Questions tagged [ffimageloading]

129 questions
0
votes
1 answer

FFImageLoading show image after downloaded

I have offline first mobile chat app where chat messages can be also images. I.e if I have 20 images, I want to download them first from URL and then to display them from the local files. In the meantime, I want to display a loading placeholder…
zlaayaa
  • 585
  • 2
  • 6
  • 25
0
votes
0 answers

Does Xamarin ffimageloadingsvg:SvgCachedImage have different rules from the web when it comes to interpreting CSS in svgs?

Here is an example: This svgs works in Google, Illustrator but not XF when using ffimageloadingsvg:SvgCachedImage
Alan2
  • 23,493
  • 79
  • 256
  • 450
0
votes
1 answer

Xamarin forms: Gif image is not working with FFimageloading in UWP

I am using FFImageLoading for playing a gif file in my project. It is working fine on android and ios but not working in UWP. I have added the following NuGet packages to every project in my…
Sreejith Sree
  • 3,055
  • 4
  • 36
  • 105
0
votes
1 answer

File placement and Build type for SVG's in Android and iOS

I had a question concerning the documentation for Xamarin.Native SVG support here: In the sample code it calls LoadFile: ImageService.Instance .LoadFile("image.svg") . . In order for this to work, where in the project must image.svg be…
Maximus
  • 1,441
  • 14
  • 38
0
votes
1 answer

How to use FFImageLoading's FFImage in uwp project

I download Xamarin.FFImageLoading.Forms in Nuget, the discription says it support uwp. I followed FFImageLoading/samples/Simple.WinUniversal.Sample/, and in MainPage.xaml, refered…
Vincent
  • 3,124
  • 3
  • 21
  • 40
0
votes
1 answer

Issue displaying images with FlowListView & FFImageLoading in Xamarin.Forms

In XAML & C# using Xamarin.Forms (iOS Project) I'm trying to create a gallery where the user can add photos to it. Currently I can show a list that does have the photo data binded to each entry because the user can click on an item in the list and…
Carr O'Connor
  • 139
  • 10
0
votes
1 answer

Xamarin iOS: How to load WebP from filepath

My project is Xamarin iOS project. I tried to load the image using ffimageloading nuget package using the below: var fileURL = NSBundle.MainBundle.PathForResource("test", "webp"); ImageService.Instance.LoadFile(fileURL).Into(imageView); I even used…
Maddiee
  • 288
  • 2
  • 11
0
votes
1 answer

ffimageloading.cross.MvxCachedImageView loading svg from resource on Android

I'm trying to load an svg that is in my resource (set as Embeddded Resource VS2019) using the following axml:
clogwog
  • 343
  • 2
  • 13
0
votes
1 answer

How to optimize the loading of a big amout of images?

I upload a large number of images from a REST service and use them to create various gif image thanks to a periodic task. I'd like to know how to optimize my code, to impove it and make it faster. public class WebcamListViewModel : BaseViewModel { …
Giuseppe Pennisi
  • 396
  • 3
  • 22
0
votes
1 answer

How to set periodically image in image.source for each element of a listView?

I need to set images to get from a rest service inside every viewer of a ListView. These images change periodically to create a "gif" effect and, after a period, I recall the service to get the updated images about the webcam. The problem is that…
Giuseppe Pennisi
  • 396
  • 3
  • 22
0
votes
0 answers

Possible to load SKBitmap via FFImageLoading CachedImage from platform assets folders?

I am using Xamarin Forms 4.1 (android and ios) and am trying to load an image (png) from the respective asset folders (i.e. resources/drawable on android) into an SKBitmap. I can load with no problem from the shared folder, (like so) Assembly…
G.E.
  • 63
  • 1
  • 7
0
votes
2 answers

Xamarin Forms SVG Image (FFImageLoading) goes missing after adding LayoutOptions

In my Xamarin Forms Project I have several SVG Images that should be displayed. Therefore I use the Xamarin.Forms.FFImageLoading.Svg.Forms NuGet Package. The XAML looks like this:
Robert Haslinger
  • 155
  • 1
  • 17
0
votes
1 answer

How to set content mode when using FFImageLoading on button

I am not able to get the content mode working on button when I am setting the image using FFImageLoading library.I want to set the mode to ScaleAspectFill. I tried setting the content mode of the button.imageview as well as the button…
benin101
  • 131
  • 3
  • 13
0
votes
1 answer

Android FFImageLoading! exception: System.Exception: Please call CachedImageRenderer.Init method in a platform specific

I am getting this exception: Unhandled Exception: System.Exception: Please call CachedImageRenderer.Init method in a platform specific project to use FFImageLoading! occurred The exception is occurring in external code and not code I can step…
ashlar64
  • 1,054
  • 1
  • 9
  • 24
1 2 3
8 9