Skip to content

Instantly share code, notes, and snippets.

View BrunoVT1992's full-sized avatar

Bruno Van Thournout BrunoVT1992

View GitHub Profile
@BrunoVT1992
BrunoVT1992 / DpiToPixelConverter.cs
Last active May 13, 2016 13:26
Converter to convert dpi sizes to pixel sizes in Xamarin Android
using Android.App;
using Android.Content;
namespace Droid
{
public static class DpiToPixelConverter
{
public static int Convert(int dpi)
{
float scale = Application.Context.Resources.DisplayMetrics.Density;
@BrunoVT1992
BrunoVT1992 / BytesConverter.cs
Last active May 13, 2016 13:15
Converter to convert number of bytes to kB, MB, GB, TB or PB in C#
using System;
namespace CSharp
{
public static class BytesConverter
{
public static double ConvertBytesToKB(long bytes)
{
return bytes / 1024f;
}
@BrunoVT1992
BrunoVT1992 / StringConverter.cs
Created May 13, 2016 13:20
Converter to capitalize the first character of a string in C#
namespace CSharp
{
public static class StringConverter
{
public static string Capitalized(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
@BrunoVT1992
BrunoVT1992 / UIImageConverter.cs
Last active May 13, 2016 13:25
Converter to blur an UIImage in Xamarin iOS
using UIKit;
using CoreImage;
namespace iOS
{
public static class UIImageConverter
{
public static UIImage Blur(UIImage image)
{
var ciImage = new CIImage(image);
@BrunoVT1992
BrunoVT1992 / ThreadUtil.cs
Created June 23, 2016 10:56
Extension to see if a thread is the main(UI) thread for Xamarin Android.
using Android.OS;
using Java.Lang;
namespace Droid
{
public static class ThreadUtil
{
public static bool IsMainThread(this Thread currentThread)
{
return currentThread == Looper.MainLooper.Thread;
@BrunoVT1992
BrunoVT1992 / UIImageExtensions.cs
Created July 20, 2017 13:05
UIImage extension to get a pixel color for Xamarin iOS
using System.Drawing;
using System.Runtime.InteropServices;
using CoreGraphics;
using UIKit;
namespace iOS
{
public static class UIImageExtensions
{
public static string GetPixelHexColor(this UIImage image, float x, float y)
@BrunoVT1992
BrunoVT1992 / FreeDrawUIView.cs
Created July 27, 2017 07:30
Free draw view for Xamarin iOS
using CoreGraphics;
using Foundation;
using UIKit;
namespace iOS
{
public class FreeDrawUIView : UIView
{
UIBezierPath _path;
@BrunoVT1992
BrunoVT1992 / FreeDrawView.cs
Created July 27, 2017 07:38
Free draw view for Xamarin Android
using Android.Content;
using Android.Graphics;
using Android.Util;
using Android.Views;
namespace Droid
{
public class FreeDrawView : View
{
Path _drawPath;
@BrunoVT1992
BrunoVT1992 / StackView.cs
Created September 18, 2017 13:27
StackView for Xamarin.iOS without the need for AutoLayout constraints
using System;
using System.Linq;
using CoreGraphics;
using UIKit;
namespace iOS
{
public class StackView : UIView
{
nfloat _previousWidth;
@BrunoVT1992
BrunoVT1992 / ScaleImageView.cs
Last active December 6, 2021 16:13
Scaleable / zoomable imageview for Xamarin Android
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using Android.Content;
using Android.Graphics;
using Android.Util;
using Android.Views;
using Android.Widget;
namespace Droid