Questions tagged [ffimageloading]

129 questions
1
vote
1 answer

Xamarin.Forms XAML Image as root element

I am new to XAML and everywhere I read about it one would usually use some sort of container as the root view (StackLayout, ContentPage, ContentView, RelativeLayout etc). But, I run into this XAML that uses Image as its root. Why would we do…
pixel
  • 9,653
  • 16
  • 82
  • 149
1
vote
0 answers

FFImageLoading: Svg not loading

I try to load svg image with FFImageLoading library, but i see empty white image. Code:
Admiral Land
  • 2,304
  • 7
  • 43
  • 81
1
vote
1 answer

How to reuse cached result in the FFImageLoading on Xamarin.Forms?

I'm trying to load and resize and transform the image in the background while the application main data is loading. I need to do this because some of images are too big and I have a lot of them, so, I thing it's better to prepare all images before…
Dmytro Bondarenko
  • 865
  • 1
  • 7
  • 12
1
vote
2 answers

Load image from URI into Button in Xamarin.Forms using FFImageLoading

Is there any way to load Image into Xamarin.Forms Button from URL? It seems that button itself only support FileImageSource. Sure, I can download image and then manually put it into Button, but I hope someone has done this already in reusable…
Shaddix
  • 5,901
  • 8
  • 45
  • 86
1
vote
1 answer

FFImageloading xamarin android fit to parent

I am creating a android app in Xamarin with the mvvmcross framework. Am trying to display pictures from the server to our users(the pictures are Urls). But the pictures refuse to scale to fill their parent. How can I achieve the right fit for these…
Thomas Billet
  • 2,381
  • 2
  • 13
  • 13
1
vote
1 answer

Organize layout xamarin

I have the following command in my layout and I want to organize my layout so that the textview category stays on the FFImageLoading
JOSE
  • 45
  • 6
1
vote
1 answer

FFImageLoading some png's URL does not show image while some other show image

I try to use FFImageLoading for my Xamarin.Android application. Everything works fine with URLs took from the Sample project on this Github. But when I use personnal URLs pictures, nothing is showing :-( Here is the code I use: //This…
Maxime Esprit
  • 705
  • 1
  • 8
  • 29
1
vote
2 answers

Xamarin Forms FFImageLoading Image not showing

I am trying to use FFImageLoading in one of our Xamarin Forms Projects but I am having some weird issues. When I try to put Sources="anyvalidimageurl" on the XAML, I get this error: Invalid XAML: Value cannot be null. Parameter name: 'obj' This is…
ParuFrade
  • 21
  • 1
  • 4
1
vote
1 answer

Xamarin PCL FFImageLoading: How to get the image without using CachedImage View

Can we get the bitmap directly from FFImageLoading? I know i can use CachedImage View but I am currently using NControl and NGraphics to do custom drawing with touch events
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
1
vote
0 answers

Listview images scroll in xamarin forms

I have problem with scroll many downloaded images(displaying by url) in listview. I tried add library for images FFImageLoading but it not solve problem with scroll. Also I cannot use ListViewCachingStrategy.RecycleElement because I have viewcell…
Ihor Levkivskyi
  • 341
  • 5
  • 14
0
votes
1 answer

Xamarin forms Images stretching

I'm trying to display images in my Xamarin forms app using "FFImageLoading" library, however, when I try to display with aspectFill it gets cut off and when I try aspect fit, it leaves spaces on the sides. I want the image to be full-width and still…
Java_Dude
  • 97
  • 9
0
votes
1 answer

Problem with binding base64 to ffimageloading:CachedImage

I have a problem with creating stacklayout, which contains image created from base64string, downloaded from database. Example of image declare: In ViewModel: public string ImageString {get; set;} = "[base64string - 95503 chars]"; Fragment code in…
slodki1997
  • 11
  • 1
0
votes
1 answer

FFImageLoading fails load big Gif file when executing real device

My Xamarin.Forms app uses FFImageLoading for loading three Gifs. A.gif : 3.7MB B.gif : 5.1MB C.gif : 2MB (These Gifs created by DavinciResolve) My app preload Gifs as following. public static async void PreloadTutorialGifs() { try { …
0
votes
1 answer

Get images protected by Access Token in dotnet Maui (alternatives to FFImageLoading)

Get images that are protected by Access Token in an api from a Maui dotnet app Previously for Xamarin FFImageLoading was used ImageService.Instance.Initialize(new Configuration { HttpClient = new HttpClient(new…
0
votes
0 answers

Is it possible to pause/resume a gif animation using FFImageLoading in Xamarin?

The question says it all. Upon loading a .gif using either SvgCachedImage or CachedImage it immediately starts playing. I however need to be able to start and stop it according to some logic. Unfortunately, the built in Xamarin Image whilst allowing…
cineam mispelt
  • 393
  • 1
  • 8
1 2 3
8 9