-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathGlobal.asax.cs
More file actions
210 lines (179 loc) · 7.16 KB
/
Global.asax.cs
File metadata and controls
210 lines (179 loc) · 7.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
using System;
using System.Collections.Generic;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using Funq;
using ServiceStack;
using System.Drawing;
using System.Drawing.Drawing2D;
//Entire C# source code for ImageResizer backend - there is no other .cs :)
namespace ImageResizer
{
[Route("/upload")]
public class Upload
{
public string Url { get; set; }
}
[Route("/images")]
public class Images { }
[Route("/resize/{Id}")]
public class Resize
{
public string Id { get; set; }
public string Size { get; set; }
}
[Route("/reset")]
public class Reset { }
public class ImageService : Service
{
const int ThumbnailSize = 100;
readonly string UploadsDir = "~/uploads".MapHostAbsolutePath();
readonly string ThumbnailsDir = "~/uploads/thumbnails".MapHostAbsolutePath();
readonly List<string> ImageSizes = new[] { "320x480", "640x960", "640x1136", "768x1024", "1536x2048" }.ToList();
public object Get(Images request)
{
return Directory.GetFiles(UploadsDir).Map(x => x.SplitOnLast(Path.DirectorySeparatorChar).Last());
}
public object Post(Upload request)
{
if (request.Url != null)
{
using (var ms = new MemoryStream(request.Url.GetBytesFromUrl()))
{
WriteImage(ms);
}
}
foreach (var uploadedFile in Request.Files.Where(uploadedFile => uploadedFile.ContentLength > 0))
{
using (var ms = new MemoryStream())
{
uploadedFile.WriteTo(ms);
WriteImage(ms);
}
}
return HttpResult.Redirect("/");
}
private void WriteImage(Stream ms)
{
var hash = GetMd5Hash(ms);
ms.Position = 0;
var fileName = hash + ".png";
using (var img = Image.FromStream(ms))
{
img.Save(UploadsDir.CombineWith(fileName));
var stream = Resize(img, ThumbnailSize, ThumbnailSize);
File.WriteAllBytes(ThumbnailsDir.CombineWith(fileName), stream.ReadFully());
ImageSizes.ForEach(x => File.WriteAllBytes(
AssertDir(UploadsDir.CombineWith(x)).CombineWith(hash + ".png"),
Get(new Resize { Id = hash, Size = x }).ReadFully()));
}
}
[AddHeader(ContentType = "image/png")]
public Stream Get(Resize request)
{
var imagePath = UploadsDir.CombineWith(request.Id + ".png");
if (request.Id == null || !File.Exists(imagePath))
throw HttpError.NotFound(request.Id + " was not found");
using (var stream = File.OpenRead(imagePath))
using (var img = Image.FromStream(stream))
{
var parts = request.Size == null ? null : request.Size.Split('x');
int width = img.Width;
int height = img.Height;
if (parts != null && parts.Length > 0)
int.TryParse(parts[0], out width);
if (parts != null && parts.Length > 1)
int.TryParse(parts[1], out height);
return Resize(img, width, height);
}
}
public static string GetMd5Hash(Stream stream)
{
var hash = MD5.Create().ComputeHash(stream);
var sb = new StringBuilder();
for (var i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("x2"));
}
return sb.ToString();
}
public static Stream Resize(Image img, int newWidth, int newHeight)
{
if (newWidth != img.Width || newHeight != img.Height)
{
var ratioX = (double)newWidth / img.Width;
var ratioY = (double)newHeight / img.Height;
var ratio = Math.Max(ratioX, ratioY);
var width = (int)(img.Width * ratio);
var height = (int)(img.Height * ratio);
var newImage = new Bitmap(width, height);
Graphics.FromImage(newImage).DrawImage(img, 0, 0, width, height);
img = newImage;
if (img.Width != newWidth || img.Height != newHeight)
{
var startX = (Math.Max(img.Width, newWidth) - Math.Min(img.Width, newWidth)) / 2;
var startY = (Math.Max(img.Height, newHeight) - Math.Min(img.Height, newHeight)) / 2;
img = Crop(img, newWidth, newHeight, startX, startY);
}
}
var ms = new MemoryStream();
img.Save(ms, ImageFormat.Png);
ms.Position = 0;
return ms;
}
public static Image Crop(Image Image, int newWidth, int newHeight, int startX = 0, int startY = 0)
{
if (Image.Height < newHeight)
newHeight = Image.Height;
if (Image.Width < newWidth)
newWidth = Image.Width;
using (var bmp = new Bitmap(newWidth, newHeight, PixelFormat.Format24bppRgb))
{
bmp.SetResolution(72, 72);
using (var g = Graphics.FromImage(bmp))
{
g.SmoothingMode = SmoothingMode.AntiAlias;
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.PixelOffsetMode = PixelOffsetMode.HighQuality;
g.DrawImage(Image, new Rectangle(0, 0, newWidth, newHeight), startX, startY, newWidth, newHeight, GraphicsUnit.Pixel);
var ms = new MemoryStream();
bmp.Save(ms, ImageFormat.Png);
Image.Dispose();
var outimage = Image.FromStream(ms);
return outimage;
}
}
}
public object Any(Reset request)
{
Directory.GetFiles(AssertDir(UploadsDir)).ToList().ForEach(File.Delete);
Directory.GetFiles(AssertDir(ThumbnailsDir)).ToList().ForEach(File.Delete);
ImageSizes.ForEach(x =>
Directory.GetFiles(AssertDir(UploadsDir.CombineWith(x))).ToList().ForEach(File.Delete));
File.ReadAllLines("~/preset-urls.txt".MapHostAbsolutePath()).ToList()
.ForEach(url => WriteImage(new MemoryStream(url.Trim().GetBytesFromUrl())));
return HttpResult.Redirect("/");
}
private static string AssertDir(string dirPath)
{
if (!Directory.Exists(dirPath))
Directory.CreateDirectory(dirPath);
return dirPath;
}
}
public class AppHost : AppHostBase
{
public AppHost() : base("Image Resizer", typeof(AppHost).Assembly) {}
public override void Configure(Container container) {}
}
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
new AppHost().Init();
}
}
}