Ffimageloading: Border and borderColor

Created on 20 Jul 2017  路  4Comments  路  Source: luberda-molinet/FFImageLoading

Hello,

How to added BorderColor and BorderThickness in XAML with CircleTransformation?

question

All 4 comments

There are properties for that:

<fftransformations:CircleTransformation BorderColor="#FFFFFF" BorderWidth="5"/>

For anyone that comes to this question via Google. It's now
BorderHexColor="#FFFFFF" BorderSize="1

How do you set a border for a regular CachedImage that does not require a CircleTransformation?

How do you set a border for a regular CachedImage that does not require a CircleTransformation?

Hi @stesvis
I have solved with this code:

<ffimage:CachedImage.Transformations>
    <fftrans:RoundedTransformation BorderHexColor="#000000" BorderSize="5" Radius="-1" CropHeightRatio="0" CropWidthRatio="0" />
</ffimage:CachedImage.Transformations>

Have a nice day! 馃槃

Was this page helpful?
0 / 5 - 0 ratings