Questions tagged [ffimageloading]
129 questions
2
votes
0 answers
How to place svg icon in toolbar
I need to replace all of my png icons with with svg - it is my employee request. I am using FFImageLoading. Some of the icons displayed in Pages are displaying properly but the problem is that I can't display svg icon in toolbar (toolbar item and…

Adam Mrozek
- 1,410
- 4
- 26
- 49
2
votes
1 answer
Loading FFImageLoading SVG into ImageButton Source from code?
This post shows how to make SvgCachedImage act like a button. However, how to load SvgCachedImage into XamarinForm's ImageButton Source ?
My non-working code:

Jeson Martajaya
- 6,996
- 7
- 54
- 56
2
votes
0 answers
Xamarin.Forms Refresh Image URI Using FFImageLoading?
In my app I have a button and an image. I click the button, it loads the devices photo picker and then on selection, sets the image source to the selected image.
This works fine if I set the image directly through code using (ImageName).Source =…

Lewis
- 55
- 1
- 7
2
votes
1 answer
Xamarin Forms FFImageLoading Corner Transformations
I have a UI design like at following image. I'm using FFImageLoading plugin and Corner Transformations but I could not make oval shape at the bottom of image. How can I do this ?
I'm trying following code but it's not working.

Oğuz KURTCUOĞLU
- 143
- 2
- 14
2
votes
1 answer
In FFImageLoading how to load an image into memory in Xamarin Android?
Doing this, I believe that my images are only being cached on the disk:
ImageService.Instance.LoadUrl(item.profileImg)
.DownSample()
.BitmapOptimizations(true)
.LoadingPlaceholder("blank_profile_img.png",…

Jim Layhey
- 353
- 5
- 13
2
votes
1 answer
FFImageLoading load bitmap into ImageViewAsync
How can I load a bitmap into an ImageViewAsync on Xamarin Android Native?

Jim Layhey
- 353
- 5
- 13
2
votes
2 answers
ContentPage containing list view display very slow on Android
I am not sure whether this is my problem or a problem with Xamarin.
On an iPad my application can load the page which contain a list of data in ListView.
The View Cell inside the ListView can be slightly complex. It contains a profile image, some…

LittleFunny
- 8,155
- 15
- 87
- 198
2
votes
1 answer
Is there a library to resize an image
I am currently using FFImageLoading package to do caching etc to show on the ui. I am unsure whether FFImageLoading have function to resize the image itself so i can save it and send over the internet.

LittleFunny
- 8,155
- 15
- 87
- 198
1
vote
1 answer
Xamarin Forms FFImageLoading SVG Is blending possible without SkiaSharp?
Is it possible to blend SVG images that use FFImageLoadingSVG.
I need to blend a SVG image that I loaded to make up a whole image but I cannot use Opacity as it doesn't do what I need it to do. Blending is required and I don't think this is…

ThisQRequiresASpecialist
- 929
- 4
- 19
1
vote
0 answers
Display an SVG from web URL in MAUI
I am converting my Xamarin Forms Application to .NET MAUI.
In existing app we have used FFImageLoader for loading svg image from url but this library doesn't support .net MAUI.
According to this Link it's not currently supported in MAUI and has been…

Mars
- 269
- 1
- 3
- 22
1
vote
1 answer
Why does Xamarin.FFImageLoading SVG is not working on Android 11 & 12?
Xamarin.FFImageLoading SVG seems to not be working on Android 11 & 12.
For example, when I do Android Target to 11 Version, setting the SVG on Embedded Resource, with this code:

udaya sankar
- 11
- 1
- 4
1
vote
0 answers
SVG image Download URL Link is not working in FFImageLoading in Xamarin Forms
I have stored the image in google drive and set the link url to FFImageLoading source. The svg image is not showing. Please refer the SVG image URL Link. I have tried many suggestion from stackoverflow, but that all are not working to me. I have…

DotNetUser
- 415
- 3
- 18
1
vote
0 answers
java.io.IOException: Cannot run program "/data/user/0//files/ffmpeg": error=13, Permission denied
I am getting below error while converting picture in Android for some device
2021-08-31 16:34:12.293 18841-19661/ E/FFmpeg: Exception while trying to run: [Ljava.lang.String;@3739148
java.io.IOException: Cannot run program…

Bhauraj Biradar
- 134
- 5
1
vote
0 answers
How can I use FFImageLoading to successfully cache and load svg resources with Xamarin Forms 5
I am trying to use FFImageLoading like this:
AppDelegate:
CachedImageRenderer.Init();
CachedImageRenderer.InitImageSourceHandler();
var config = new FFImageLoading.Config.Configuration()
{
VerboseLogging = true,
VerbosePerformanceLogging =…

Richard A
- 191
- 7
1
vote
1 answer
Image with rounded corners
I am trying to get an image in the shape of rectangle with rounded Cornes. I have tried to use nugget fftransformations and frame. So far I am not getting the result I want. Using the nugget turns the image into square no matter what size I give to…

Rnta kokoi
- 21
- 6