As @Cheesebaron quoted once if forum :
If you look at
http://docs.xamarin.com/guides/android/advanced_topics/assemblies you
will see that System.Drawing is not a part of the Assemblies shipped
with Xamarin.Android, the same goes for Xamarin.iOS.
You will need to use the Android counterparts to filter images.
The alternative method is to add System.Drawing.dll as references.
Right click on References --> Edit References --> .Net Assembly --> Browse... --> C:\Windows\Microsoft.NET\Framework\v4.0.30319 --> select System.Drawing.dll.
Now try to make use of Bitmap class using System.Drawing;
