-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathIcon.cs
68 lines (40 loc) · 1.37 KB
/
Icon.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
using Gsemac.Win32.Native;
using System;
using System.Runtime.InteropServices;
using static Gsemac.Win32.Native.Constants;
#if NETFRAMEWORK
using System.Drawing;
#endif
namespace Gsemac.Win32 {
public sealed class Icon :
IDisposable {
// Public members
public SafeHandle Handle { get; }
public static Icon FromFilePath(string filePath) {
return FromFilePath(filePath, IconSize.Small);
}
public static Icon FromFilePath(string filePath, IconSize iconSize) {
SHFILEINFO shInfo = new SHFILEINFO {
szDisplayName = new string((char)0, MAX_PATH),
szTypeName = new string((char)0, 80)
};
Shell32.SHGetFileInfo(filePath, FILE_ATTRIBUTE_NORMAL, ref shInfo, Marshal.SizeOf(shInfo), SHGFI_ICON | (int)iconSize | SHGFI_USEFILEATTRIBUTES);
return FromHandle(shInfo.hIcon);
}
public static Icon FromHandle(IntPtr handle) {
return new Icon(handle);
}
#if NETFRAMEWORK
public Bitmap ToBitmap() {
return System.Drawing.Icon.FromHandle(Handle.DangerousGetHandle()).ToBitmap();
}
#endif
public void Dispose() {
Handle.Dispose();
}
// Private members
private Icon(IntPtr handle) {
Handle = new IconHandle(handle);
}
}
}