ご質問
サービスに画像をPOST/GETする方法は何ですか? JSONでBase-64テキストを使用するか、バイナリとしてネイティブのままにすることができると思います。私の理解では、画像をテキストに変換することにより、パッケージのサイズが大幅に増加します。
画像を(Webフォーム、ネイティブクライアント、別のサービスから)送信する場合、Image Controller/Handlerを追加するか、フォーマッターを使用する必要がありますか?これはどちらかまたは両方の質問ですか?
私は多くの競合する例を調査し、見つけましたが、どちらの方向に向かうべきかはわかりません。
これに関する賛否両論を説明するサイト/ブログ記事はありますか?
私はいくつかの研究を行いましたが、ここで思いついた実装を見ることができます: http://jamessdixon.wordpress.com/2013/10/01/handling-images-in-webapi/
保存のために-ジェイミーのブログが言ったことの概要は次のとおりです。
コントローラーを使用する:
取得する:
public HttpResponseMessage Get(int id)
{
var result = new HttpResponseMessage(HttpStatusCode.OK);
String filePath = HostingEnvironment.MapPath("~/Images/HT.jpg");
FileStream fileStream = new FileStream(filePath, FileMode.Open);
Image image = Image.FromStream(fileStream);
MemoryStream memoryStream = new MemoryStream();
image.Save(memoryStream, ImageFormat.Jpeg);
result.Content = new ByteArrayContent(memoryStream.ToArray());
result.Content.Headers.ContentType = new MediaTypeHeaderValue("image/jpeg");
return result;
}
削除:
public void Delete(int id)
{
String filePath = HostingEnvironment.MapPath("~/Images/HT.jpg");
File.Delete(filePath);
}
役職:
public HttpResponseMessage Post()
{
var result = new HttpResponseMessage(HttpStatusCode.OK);
if (Request.Content.IsMimeMultipartContent())
{
//For larger files, this might need to be added:
//Request.Content.LoadIntoBufferAsync().Wait();
Request.Content.ReadAsMultipartAsync<MultipartMemoryStreamProvider>(
new MultipartMemoryStreamProvider()).ContinueWith((task) =>
{
MultipartMemoryStreamProvider provider = task.Result;
foreach (HttpContent content in provider.Contents)
{
Stream stream = content.ReadAsStreamAsync().Result;
Image image = Image.FromStream(stream);
var testName = content.Headers.ContentDisposition.Name;
String filePath = HostingEnvironment.MapPath("~/Images/");
//Note that the ID is pushed to the request header,
//not the content header:
String[] headerValues = (String[])Request.Headers.GetValues("UniqueId");
String fileName = headerValues[0] + ".jpg";
String fullPath = Path.Combine(filePath, fileName);
image.Save(fullPath);
}
});
return result;
}
else
{
throw new HttpResponseException(Request.CreateResponse(
HttpStatusCode.NotAcceptable,
"This request is not properly formatted"));
}
}