-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathResizeHttpTrigger-incomplete.cs
52 lines (48 loc) · 1.84 KB
/
ResizeHttpTrigger-incomplete.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Processing;
namespace Company.Function
{
public static class ResizeHttpTrigger
{
// TODO N'accepter que le POST
[FunctionName("ResizeHttpTrigger")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log)
{
int w = 0; // TODO récupérer le paramètre w
int h = 0; // TODO récupérer le paramètre h
byte[] targetImageBytes;
using(var msInput = new MemoryStream())
{
// Récupère le corps du message en mémoire
await req.Body.CopyToAsync(msInput);
msInput.Position = 0;
// Charge l'image
using (var image = Image.Load(msInput))
{
// Effectue la transformation
image.Mutate(x => x.Resize(w, h));
// Sauvegarde en mémoire
using (var msOutput = new MemoryStream())
{
image.SaveAsJpeg(msOutput);
targetImageBytes = msOutput.ToArray();
}
}
}
// Renvoie le contenu avec le content-type correspondant à une image jpeg
// TODO renvoyer les octets de l'image
// TODO ... ainsi que le content-type correspondant à une image Jpeg
return new FileContentResult(null, ""); }
}
}