-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.aspx.cs
46 lines (44 loc) · 1.62 KB
/
Default.aspx.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApi_Imagen_Consumir
{
public partial class _Default : Page
{
protected void Page_Load(object sender, EventArgs e)
{
//ruta de la imagen
string path = Server.MapPath("~/Images/2.jpg");
//cargar la imagen en la variable de tipo tyte
byte[] imageByteData = System.IO.File.ReadAllBytes(path);
//enviar la imagen por la web api
funCrear(imageByteData);
}
public void funCrear(byte[] ImageData)
{
try
{
var content = new MultipartFormDataContent();
//la imagen se carga en el contenido
content.Add(new StreamContent(new MemoryStream(ImageData)), "Images", "2.jpg");
// se instancia el objeto httpclient
var httpClient = new HttpClient();
//asignacion de la tura de la web api
//aqui se encuentra el ejemplo complementario para ejecutar el web api
//https://github.com/elmarkos23/WebApi-Imagen-Consumir
var uploadServiceBaseAddress = "http://localhost:49526/api/Imagen/Upload";
//envio a la web api el contenido (la imagen)
var httpResponseMessage = httpClient.PostAsync(uploadServiceBaseAddress, content);
}
catch (Exception ex)
{
string a = ex.Message.ToString();
}
}
}
}