-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImgManager.cs
31 lines (28 loc) · 960 Bytes
/
ImgManager.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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shorthander
{
public class ImgManager
{
public Bitmap ReadImage(string path)
{
return (Bitmap)Image.FromFile(path);
}
public void WriteImage(Bitmap image, string path)
{
var file = new string(path);
if (file.EndsWith(".jpg")) file = file.Replace(".jpg", ".jpeg");
var format = typeof(ImageFormat).GetProperties().SingleOrDefault(x => "." + x.Name.ToLower() == Path.GetExtension(file).ToLower());
if (format == null) throw new FileFormatException(new Uri(file), "Extensão não suportada!");
if (File.Exists(path))
File.Delete(path);
image.Save(path, (ImageFormat)format.GetValue(null, null));
}
}
}