PreviewForm.cs
1.14 KB
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.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using HttpUtils;
using System.Net;
using System.IO;
namespace moyaPrintServer
{
public partial class PreviewForm : Form
{
public PreviewForm()
{
InitializeComponent();
}
public int CardId;
private void PreviewForm_Load(object sender, EventArgs e)
{
string api = RestClient.GetRequestURL(Properties.Settings.Default.ApiURL, "card/GetImage/" + CardId);
WebRequest request = WebRequest.Create(api);
try
{
using (WebResponse response = request.GetResponse())
{
using (Stream stream = response.GetResponseStream())
{
pictureBox1.Image = Bitmap.FromStream(stream);
}
}
}
catch (Exception ex)
{
statusStrip1.Text = ex.Message;
return;
}
}
}
}