Round Image In Xamarin.Forms

Introduction

In this article we are going to display a rounded image in Xamarin forms PCL application. In Xamarin forms there is no default function available to make an image round. So, we need a plug-in for this. 

So, start by installing a plug-in into every project of your solution.

Go to manage nuget package for solution

Search for “xam.plugins.forms.ImageCircle” and install the plug-in in every project.

Xamarin.forms

Now in each application project we have to add some code.

IOS

In iOS project go to AppDelegate.cs class and add the following code,

Include this library,

  1. using ImageCircle.Forms.Plugin.iOS;  

Add Image circle renderer code after InIt method,

Code

  1. ImageCircleRenderer.Init();  

 

Image

Xamarin.forms

Now open Android project and search for MainActivity.cs and add the same code after InIt.

Library

  1. using ImageCircle.Forms.Plugin.Droid;  

Code

  1. ImageCircleRenderer.Init();  

Image

Xamarin.forms

Now in Windows project open App.xaml.cs fil and paste the same code:

Library

  1. using ImageCircle.Forms.Plugin.UWP;  

Code

  1. ImageCircleRenderer.Init();  

Image

Xamarin.forms

After initializing renderer open the xaml file where you want to use this renderer.

Now add the following Namespace in you xaml file.

  1. xmlns:ci="clr-namespace:ImageCircle.Forms.Plugin.Abstractions;assembly=ImageCircle.Forms.Plugin.Abstractions"  

Now you can use your renderer in xaml by the following code,

  1. <ci:CircleImage>  
  2. </ci:CircleImage>  

There are some requirements to use the renderer. You must have to set height width request. Make sure that you use the same value for height and width to make your image rounded properly. After this you can set Aspect of your image. You can set it to,

  • AspectFit
  • AspectFill
  • Fill

After this you can set the source for your image. You can either set the source of local image present in each of your application projects or you can use your custom markup extension to set source in xaml file. Otherwise you can use online image as your image source.

XAML 

  1. <?xml version="1.0" encoding="utf-8" ?>  
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"  
  3.              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"  
  4.              xmlns:ci="clr-namespace:ImageCircle.Forms.Plugin.Abstractions;assembly=ImageCircle.Forms.Plugin.Abstractions"  
  5.              x:Class="Practice__app.CsharpCorner">  
  6.     <ContentPage.Content>  
  7.         <StackLayout>  
  8.   
  9.   
  10.             <ci:CircleImage   
  11.             HeightRequest="100"   
  12.             WidthRequest="100"   
  13.             Source="https://www.codeproject.com/KB/GDI-plus/ImageProcessing2/flip.jpg"   
  14.             Aspect="AspectFill">  
  15.   
  16.             </ci:CircleImage>  
  17.   
  18.         </StackLayout>  
  19.     </ContentPage.Content>  
  20. </ContentPage>  

Original Image

Xamarin.forms

Output Image

Xamarin.forms

Up Next
    Ebook Download
    View all
    Learn
    View all