| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Net.Http;
- using System.Threading.Tasks;
- using Windows.Graphics.Imaging;
- using Windows.Media.Capture;
- using Windows.Storage;
- using Windows.Storage.Streams;
- using Windows.UI.Xaml.Media.Imaging;
- using YJMPD_UWP.Helpers.EventArgs;
- namespace YJMPD_UWP.Model
- {
- public class PhotoHandler
- {
- public delegate void OnStatusUpdateHandler(object sender, PhotoStatusUpdatedEventArgs e);
- public event OnStatusUpdateHandler OnStatusUpdate;
- public enum PhotoStatus { NOPHOTO, TAKING, UPLOADING, DONE}
- public PhotoStatus Status;
- public string Photo { get; private set; }
- public PhotoHandler()
- {
- Photo = "ms-appx:///Assets/Error.png";
- Status = PhotoStatus.NOPHOTO;
- }
- public void Reset()
- {
- Photo = "ms-appx:///Assets/Error.png";
- Status = PhotoStatus.NOPHOTO;
- }
- public void SetPhoto(string photo)
- {
- Photo = photo;
- UpdateStatus(PhotoStatus.DONE);
- }
- private void UpdateStatus(PhotoStatus status)
- {
- Status = status;
- if (OnStatusUpdate == null) return;
- OnStatusUpdate(this, new PhotoStatusUpdatedEventArgs(status));
- }
- public async void Take()
- {
- UpdateStatus(PhotoStatus.TAKING);
- CameraCaptureUI captureUI = new CameraCaptureUI();
- captureUI.PhotoSettings.Format = CameraCaptureUIPhotoFormat.Png;
- captureUI.PhotoSettings.AllowCropping = false;
- captureUI.PhotoSettings.MaxResolution = CameraCaptureUIMaxPhotoResolution.Large3M;
- StorageFile photo = await captureUI.CaptureFileAsync(CameraCaptureUIMode.Photo);
- if (photo == null)
- {
- UpdateStatus(PhotoStatus.NOPHOTO);
- return;
- }
- IRandomAccessStream stream = await photo.OpenAsync(FileAccessMode.Read);
- BitmapDecoder decoder = await BitmapDecoder.CreateAsync(stream);
- SoftwareBitmap softwareBitmap = await decoder.GetSoftwareBitmapAsync();
- SoftwareBitmap softwareBitmapBGR8 = SoftwareBitmap.Convert(softwareBitmap,
- BitmapPixelFormat.Bgra8,
- BitmapAlphaMode.Premultiplied);
- SoftwareBitmapSource bitmapSource = new SoftwareBitmapSource();
- await bitmapSource.SetBitmapAsync(softwareBitmapBGR8);
- UpdateStatus(PhotoStatus.UPLOADING);
- string photoURL = await UploadImage(stream.AsStream());
- Photo = photoURL;
- UpdateStatus(PhotoStatus.DONE);
- }
- public async Task<string> UploadImage(Stream file)
- {
- string url = "http://jancokock.me/f/?plain";
- MultipartFormDataContent postdata = new MultipartFormDataContent();
- postdata.Add(new ByteArrayContent(ReadFully(file)), "file", "capture.png");
- using (HttpClient hc = new HttpClient())
- {
- try
- {
- var response = await hc.PostAsync(url, postdata);
- response.EnsureSuccessStatusCode();
- string imageurl = await response.Content.ReadAsStringAsync();
- string imageid = new List<string>(imageurl.Split('/')).Last();
- return imageurl + "/" + imageid;
- }
- catch
- {
- throw new IOException("Network error");
- }
- }
- }
- public byte[] ReadFully(Stream input)
- {
- byte[] buffer = new byte[16 * 1024];
- using (MemoryStream ms = new MemoryStream())
- {
- int read;
- while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
- {
- ms.Write(buffer, 0, read);
- }
- return ms.ToArray();
- }
- }
- }
- }
|