简体   繁体   English

从缩略图中的图库转换图像(xamarin表格)

[英]convert image from gallery in thumbnail (xamarin forms)

this is my code for pick an image from gallery in my pcl project (ios/android) 这是我的代码,用于从我的pcl项目中的库中选择一个图像(ios / android)

        protected async Task PickImage()
    {
        try
        {
            Stream stream = await DependencyService.Get<IPicturePicker>().GetImageStreamAsync();

            {
                Image image = new Image
                {
                    Source = ImageSource.FromStream(() => stream),
                    BackgroundColor = Color.Gray
                };

                byte[] ImageData = Utils.Base64Utils.ToByteArray(stream);
                _base64String = Convert.ToBase64String(ImageData);

                editar_foto_perfil.Source = ImageSource.FromStream(() => new MemoryStream(Convert.FromBase64String(_base64String)));

                user.trocaImage = _base64String;

                if (Device.OS == TargetPlatform.iOS)
                {
                    user.cont_datanascimento = editar_date_datanasc.Date.ToString("yyyyMMdd");

                    if (editar_entry_nome.Text != null)
                        user.cont_nome = editar_entry_nome.Text;

                    if (editar_picker_estado.SelectedIndex != -1)
                        user.cont_estado = editar_picker_estado.Items[editar_picker_estado.SelectedIndex].ToString();

                    if (editar_picker_cidade.SelectedIndex != -1)
                        user.cont_cidade = editar_picker_cidade.Items[editar_picker_cidade.SelectedIndex].ToString();

                    if (editar_entry_senha.Text != null)
                        user.usua_senha = editar_entry_senha.Text;

                    if (editar_entry_email.Text != null)
                        user.usua_login = editar_entry_email.Text;

                    menu.RecriaEditarIOS(user);
                }
            }
        }
        catch (Exception ex)
        {
            var s = ex.Message;
        }
    }

sometimes I can't send the image picked to the server. 有时候我无法将拍摄的图像发送到服务器。 Normally, it happens when the image is big, so, I want to resize it to a small image and send it to the server. 通常情况下,它会在图像很大时发生,因此,我想将其调整为小图像并将其发送到服务器。 Some idea? 有些想法?


Update 更新

I am trying the Crossmedia plugin as our friend suggested in the comments... then I changed my method: 我正在尝试我的朋友在评论中建议的Crossmedia插件...然后我改变了我的方法:

protected async Task PickImage()
    {
        try
        {
            //Stream stream = await DependencyService.Get<IPicturePicker>().GetImageStreamAsync();
            await CrossMedia.Current.Initialize();

            if (!CrossMedia.Current.IsPickPhotoSupported)
            {
                DisplayAlert("Photos Not Supported", ":( Permission not granted to photos.", "OK");
                return;
            }
            else
            {
            var file = await Plugin.Media.CrossMedia.Current.PickPhotoAsync(new Plugin.Media.Abstractions.PickMediaOptions
            {
                PhotoSize = Plugin.Media.Abstractions.PhotoSize.Medium,
            });             
        }
      }
        catch (Exception ex)
        {
            var s = ex.Message;
        }
    }

But, file is always null 但是, 文件始终为空

pick an image from the gallery in my PCL project and I want to resize it to a small image 从我的PCL项目中的库中选择一个图像,我想将其调整为一个小图像

You could use the MediaPlugin to implement this function, here is its simple usage : 您可以使用MediaPlugin来实现此功能,这是它的简单用法

pickPhoto.Clicked += async (sender, args) =>
{
    if (!CrossMedia.Current.IsPickPhotoSupported)
    {
      DisplayAlert("Photos Not Supported", ":( Permission not granted to photos.", "OK");
      return;
    }
     var file = await Plugin.Media.CrossMedia.Current.PickPhotoAsync(new Plugin.Media.Abstractions.PickMediaOptions
                  {
                      PhotoSize =  Plugin.Media.Abstractions.PhotoSize.Medium,
     });


    if (file == null)
      return;

    var stream = file.GetStream();
}

Class PickMediaOptions is used to resize the selected image, you could find the source code here . PickMediaOptions用于调整所选图像的大小,您可以在此处找到源代码。

Update: 更新:

Here is my code and it works fine on my side: 这是我的代码,它在我身边很好用:

private async void button_Clicked(object sender, EventArgs e)
{
    await PickImage();
}

protected async Task PickImage()
{
    try
    {
        await CrossMedia.Current.Initialize();

        if (!CrossMedia.Current.IsPickPhotoSupported)
        {
            DisplayAlert("Photos Not Supported", ":( Permission not granted to photos.", "OK");
            return;
        }
        else
        {
            var file = await Plugin.Media.CrossMedia.Current.PickPhotoAsync(new Plugin.Media.Abstractions.PickMediaOptions
            {
                PhotoSize = Plugin.Media.Abstractions.PhotoSize.Medium,
            });

            if (file == null)
                return;

            image.Source = ImageSource.FromStream(() =>
            {
                var stream = file.GetStream();
                file.Dispose();
                return stream;
            });
        }
    }
    catch (Exception ex)
    {
        var s = ex.Message;
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM