-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathImageFactoryExtensions.cs
78 lines (49 loc) · 2.34 KB
/
ImageFactoryExtensions.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
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
using Gsemac.Drawing;
using Gsemac.Drawing.Imaging;
using Gsemac.IO;
using System;
using System.Drawing;
using System.IO;
namespace Gsemac.Drawing {
public static class ImageFactoryExtensions {
// Public members
public static IImage FromFile(this IImageFactory imageFactory, string filePath) {
return imageFactory.FromFile(filePath, ImageDecoderOptions.Default);
}
public static IImage FromFile(this IImageFactory imageFactory, string filePath, IImageDecoderOptions options) {
if (imageFactory is null)
throw new ArgumentNullException(nameof(imageFactory));
if (options is null)
throw new ArgumentNullException(nameof(options));
if (options.Format is null) {
options = new ImageDecoderOptions(options) {
Format = FileFormatFactory.Default.FromFile(filePath),
};
}
using (Stream stream = File.OpenRead(filePath))
return imageFactory.FromStream(stream, options);
}
public static IImage FromStream(this IImageFactory imageFactory, Stream stream) {
if (imageFactory is null)
throw new ArgumentNullException(nameof(imageFactory));
if (stream is null)
throw new ArgumentNullException(nameof(stream));
return imageFactory.FromStream(stream, ImageDecoderOptions.Default);
}
public static IImage FromBitmap(this IImageFactory imageFactory, Image image) {
if (imageFactory is null)
throw new ArgumentNullException(nameof(imageFactory));
if (image is null)
throw new ArgumentNullException(nameof(image));
return imageFactory.FromBitmap(image, null, null);
}
public static IImage FromBitmap(this IImageFactory imageFactory, Image image, IFileFormat format, IImageCodec codec) {
// The "format" and "codec" arguments are allowed to be null, and will be set to defaults by GdiImage's constructor.
if (imageFactory is null)
throw new ArgumentNullException(nameof(imageFactory));
if (image is null)
throw new ArgumentNullException(nameof(image));
return new GdiImage(image, format, codec);
}
}
}