Results 24 comments of Daniel Luberda

Check `RoundedTransformation`'s `WidthRatio` / `HeightRatio` properties. Eg. specify 2:1

@akamud Yes, that would be great, but you'll need to base on `next` branch

Could you make a repo?

@LeoJHarris You sample has way to many dependencies. Tried to add it to FFImageLoading's solution and: ![Screenshot 2019-05-28 at 18 53 17](https://user-images.githubusercontent.com/13569983/58496365-07e5ba80-817a-11e9-9a01-8c180b972711.png) Please provide a minimal repo, then I would...

@LeoJHarris Unluckily, I couldn't add your projects to the FFImageLoading repo (errors). Can you clone this repo and add those projects here? (I need to reference FFImageloading projects instead nuget...

Thank you. That would be nice, but I'll need to have some time for this first (it's just my side project). Meanwhile, any PR welcome :) (also partially working as...

Filters are not supported yet. We'll need to implement it. 1. First we'll need to parse filters 2. We can apply them with: https://docs.microsoft.com/en-us/dotnet/api/skiasharp.skimagefilter?view=skiasharp-1.68.0

@stfnilsson Could you describe in details what you want to achieve? Do you want to change colors? If yes, then maybe `ReplaceStringMap` property would fit you (you can replace any...

For now, you can simply inherit from `SvgCachedImage` and add something like this to your custom control: ```C# public static BindableProperty ColorProperty = BindableProperty.Create(nameof(Color), typeof(Color), typeof(SvgCachedImage)); public Color Color {...