上传 UIImage 类型的图像列表 (Xamarin)

Upload a list of images of type UIImage (Xamarin)

我的应用将从特定文件夹中检索所有图像的列表,并尝试通过 API 端点

将它们上传到服务器

由于上述要求,图像选择器不适合

下面是共享代码中的方法,它传递了一个 UIImages 列表(我试图让它现在只与 ios 一起工作,但相同的场景最终将应用于 Android还有)

下面的不起作用,因为当我在服务器(AWS)上查看图像时,它是代码格式的。它还说服务器上的内容类型是 application/json 我不明白,因为我将其设置为 image/png

private async Task UploadImages(List<UIImage> images)
{            
    HttpClient client = new HttpClient();
    var contentType = new MediaTypeWithQualityHeaderValue("image/png");
    client.DefaultRequestHeaders.Accept.Add(contentType);
    client.DefaultRequestHeaders.Add("Id-Token", Application.Current.Properties["id_token"].ToString());

    foreach (var image in images)
    {
        try
        {                                        
            string baseUrl = $"https://********/dev/ferret-test/media/team1/user1/device1/test1.png";             
            client.BaseAddress = new Uri(baseUrl);

            //UploadModel uploadModel = new UploadModel
            //{
            //    image_file = image.AsPNG()
            //};

            byte[] bArray = null;
            Stream pst = image.AsPNG().AsStream();
            using (MemoryStream ms = new MemoryStream())
            {
                ms.Position = 0;
                pst.CopyTo(ms);
                bArray = ms.ToArray();
            }

            //string stringData = JsonConvert.SerializeObject(bArray);
            //var contentData = new StringContent(stringData,
            //System.Text.Encoding.UTF8, "image/png");

            //Byte[] myByteArray = new Byte[imageData.Length];
            //System.Runtime.InteropServices.Marshal.Copy(imageData.Bytes, myByteArray, 0, Convert.ToInt32(imageData.Length));                        

            var postRequest = new HttpRequestMessage(HttpMethod.Put, baseUrl)
            {
                Content = new ByteArrayContent(bArray)
            };

            var response = await client.SendAsync(postRequest);
            response.EnsureSuccessStatusCode();
            string stringJWT = response.Content.ReadAsStringAsync().Result;   
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex);
        }
    }
}       

您可以尝试使用 MultipartFormDataContent 并将内容类型设置为 application/octet-stream

您可以参考这两个链接one and

我存档了使用以下代码片段将多个文件上传到服务器,你可以试一试...

foreach (SQLiteAccess.Tables.Image image in images.OrderByDescending(x => x.Id)) //Here is the collection of all the file at once (Documents + Images)
{
      int documentId = UploadImageToServerAndroid(image).Result;
      // My other code implementation
      .
      .
      .
}

private async Task<int> UploadImageToServerAndroid(SQLiteAccess.Tables.Image image)
       {
           int documentId = 0;

           if (!Admins.ConnectedToNetwork()) return documentId;

           MyFile = FileSystem.Current.GetFileFromPathAsync(image.Path).Result;

           if (MyFile == null) return documentId;
         
           Stream stream = MyFile.OpenAsync(FileAccess.Read).Result;

           byte[] byteArray;
           byteArray = new byte[stream.Length];
           stream.Read(byteArray, 0, (int)stream.Length);
           
           if( !image.IsDocument )
           {
               try
               {
                   byteArray = DependencyService.Get<IImageUtilities>().CompressImage(byteArray); //Its custom code to compress the Image.
               }
               catch (Exception ex)
               {
                   UoW.Logs.LogMessage(new LogDTO { Message = ex.Message, Ex = ex });
               }
           }
           string url = "Your URL";
           using (HttpClient client = new HttpClient(new RetryMessageHandler(new HttpClientHandler())))
           {
               try
               {
                   client.DefaultRequestHeaders.Add(Properties.Resources.Authorization, Sessions.BearerToken);
                   client.DefaultRequestHeaders.Add("DocumentSummary", image.Comment);
                   client.DefaultRequestHeaders.Add("DocumentName", Path.GetFileName(image.Path));
                   MultipartFormDataContent multiPartContent = new MultipartFormDataContent();
                   ByteArrayContent byteContent = new ByteArrayContent(byteArray);
                   byteContent.Headers.ContentType = MediaTypeHeaderValue.Parse("image/jpeg");
                   multiPartContent.Add(byteContent, "image", Path.GetFileName(image.Path));
                   HttpResponseMessage response = await client.PostAsync(url, multiPartContent);
                   if (response.IsSuccessStatusCode && response.Content != null)
                   {
                       string jsonString = response.Content.ReadAsStringAsync().Result;
                       DocumentDTO result = JsonConvert.DeserializeObject<DocumentDTO>(jsonString);
                       documentId = result.DocumentId;
                   }
               }
               catch(Exception ex)
               {
                   UoW.Logs.LogMessage( new LogDTO { Message = ex.Message, Ex = ex });
                   return documentId;
               }
           }
           return documentId;
       }

如果 documentid 为 0(如果出现问题,无论出于何种原因),它会被标记为未上传,并会在互联网可用时再次尝试上传。

如果您需要更多帮助,可以询问...:)