sends avatar in the right orientation

main
Paul Schneider 9 years ago
parent 93f82bae4d
commit d72a25d5f6
1 changed files with 106 additions and 31 deletions

@ -1,16 +1,18 @@
 using Plugin.Media;
using ZicMoove.ViewModels.UserProfile;
using Plugin.Media;
using Plugin.Media.Abstractions; using Plugin.Media.Abstractions;
using System; using System;
using Xamarin.Forms; using Xamarin.Forms;
using ZicMoove.Settings;
using ZicMoove.Helpers;
using System.Net.Http; using System.Net.Http;
using Android.Graphics;
namespace ZicMoove.Pages.UserProfile namespace ZicMoove.Pages.UserProfile
{ {
using ViewModels.UserProfile;
using Helpers;
using System.IO;
using System.Threading.Tasks;
using Android.Content.Res;
public partial class UserProfilePage public partial class UserProfilePage
{ {
public UserProfilePage() public UserProfilePage()
@ -32,32 +34,110 @@ namespace ZicMoove.Pages.UserProfile
private async void BtnPay_Clicked(object sender, EventArgs e) private async void BtnPay_Clicked(object sender, EventArgs e)
{ {
App.PlatformSpecificInstance.Pay(0.1, Interfaces.PayMethod.Immediate, "test payment"); App.PlatformSpecificInstance.Pay(0.1, Interfaces.PayMethod.Immediate, "test payment");
} }
private async void AvatarButton_Clicked(object sender, EventArgs e) private async void AvatarButton_Clicked(object sender, EventArgs e)
{ {
IsBusy = true;
if (!CrossMedia.Current.IsCameraAvailable || !CrossMedia.Current.IsTakePhotoSupported) if (!CrossMedia.Current.IsCameraAvailable || !CrossMedia.Current.IsTakePhotoSupported)
{ {
await DisplayAlert("No Camera", ":( No camera avaialble.", "OK"); await DisplayAlert("No Camera", ":( No camera avaialble.", "OK");
IsBusy = false;
return; return;
} }
IsBusy = true;
var file = await CrossMedia.Current.TakePhotoAsync(new StoreCameraMediaOptions var file = await CrossMedia.Current.TakePhotoAsync(new StoreCameraMediaOptions
{ {
Directory = "Avatars", Directory = "Avatars",
Name = "me.jpg" Name = "me.jpg",
DefaultCamera = CameraDevice.Front
}); });
if (file == null) if (file == null)
{
IsBusy = false;
return; return;
using (var client = UserHelpers.CreateJsonClient()) }
if (TargetPlatform.Android == Device.OS)
{ {
// Get the whole data // Rotate if needed
try BitmapFactory.Options options = new BitmapFactory.Options { };
Android.Media.ExifInterface exif = new Android.Media.ExifInterface(file.Path);
var orientation = exif.GetAttributeInt(
Android.Media.ExifInterface.TagOrientation, 0);
using (var stream = file.GetStream())
{
var bmp = await BitmapFactory.DecodeStreamAsync(stream);
// Next we calculate the ratio that we need to resize the image by
// in order to fit the requested dimensions.
int outHeight = options.OutHeight;
int outWidth = options.OutWidth;
Matrix mtx = new Matrix();
Bitmap nbmp = null;
switch (orientation)
{
case (int)Orientation.Undefined: // Nexus 7 landscape...
mtx.PreRotate(180);
nbmp = Bitmap.CreateBitmap(bmp, 0, 0, bmp.Width, bmp.Height, mtx, false);
mtx.Dispose();
mtx = null;
break;
case (int)Orientation.Landscape:
break;
case 1: // landscape left
case 3: // Landskape right
mtx.PreRotate(180);
nbmp = Bitmap.CreateBitmap(bmp, 0, 0, bmp.Width, bmp.Height, mtx, false);
break;
case 6: // portrait
mtx.PreRotate(90);
nbmp = Bitmap.CreateBitmap(bmp, 0, 0, bmp.Width, bmp.Height, mtx, false);
break;
case 8: // my portrait
mtx.PreRotate(-90);
nbmp = Bitmap.CreateBitmap(bmp, 0, 0, bmp.Width, bmp.Height, mtx, false);
break;
}
if (nbmp != null)
{
using (var ostream = new MemoryStream())
{
nbmp.Compress(Bitmap.CompressFormat.Png, 10, ostream);
ostream.Seek(0, SeekOrigin.Begin);
var ok = await SendAvatarStreamAsync(ostream);
}
nbmp.Dispose();
}
else
{
using (var ostream = new MemoryStream())
{
bmp.Compress(Bitmap.CompressFormat.Png, 10, ostream);
ostream.Seek(0, SeekOrigin.Begin);
var ok = await SendAvatarStreamAsync(ostream);
}
}
mtx.Dispose();
bmp.Dispose();
}
exif.Dispose();
options.Dispose();
}
else
{ {
using (var stream = file.GetStream()) using (var stream = file.GetStream())
{
var ok = await SendAvatarStreamAsync(stream);
}
}
IsBusy = false;
}
private async Task<bool> SendAvatarStreamAsync(Stream stream)
{
using (var client = UserHelpers.CreateJsonClient())
{ {
var requestContent = new MultipartFormDataContent(); var requestContent = new MultipartFormDataContent();
var content = new StreamContent(stream); var content = new StreamContent(stream);
@ -72,16 +152,11 @@ namespace ZicMoove.Pages.UserProfile
{ {
// TODO image update // TODO image update
var recnt = await response.Content.ReadAsStringAsync(); var recnt = await response.Content.ReadAsStringAsync();
return true;
} }
} }
} }
} return false;
catch (Exception ex)
{
// TODO error report
}
}
IsBusy = false;
} }
public void OnManageFiles(object sender, EventArgs e) public void OnManageFiles(object sender, EventArgs e)

Loading…