-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImage.cs
More file actions
30 lines (28 loc) · 736 Bytes
/
Image.cs
File metadata and controls
30 lines (28 loc) · 736 Bytes
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
namespace Saber.Core
{
public static class Image
{
public static string[] Extensions { get; set; } = new string[]
{
".apng",
".avif",
".gif",
".jpeg",
".jpg",
".png",
".svg",
".webp",
".bmp",
".ico",
".tiff"
};
public static void Shrink(string filename, string outfile, int width)
{
Delegates.Image.Shrink(filename, outfile, width);
}
public static void ConvertPngToJpg(string filename, string outfile, int quality = 100)
{
Delegates.Image.ConvertPngToJpg(filename, outfile, quality);
}
}
}