/// <summary> /// Reduces the given ratio to their lowest rational representation. /// </summary> public static Tuple <int, int> GetAspectRatio(int width, int height) { return(GetAspectRatio(width, height, SettingsAccess.GetInstance())); }