-
Notifications
You must be signed in to change notification settings - Fork 5
/
PictureRec.cs
executable file
·44 lines (40 loc) · 1.04 KB
/
PictureRec.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
using System.Drawing;
namespace MarkAble2
{
public class PictureRec
{
public enum PictureTypes
{
None = 0x00,
FileIcon = 0x01,
OtherFileIcon = 0x02,
FrontCover = 0x03,
BackCover = 0x04,
Leaflet = 0x05,
Media = 0x06,
LeadArtist = 0x07,
Performer = 0x08,
Conductor = 0x09,
Band = 0x0A,
Composer = 0x0B,
Lyricist = 0x0C,
RecordingLocation = 0x0D,
RecordingShot = 0x0E,
PerformanceShot = 0x0F,
VideoCapture = 0x10,
Fish = 0x11,
Illustration = 0x12,
BandLogo = 0x13,
StudioLogo = 0x14
}
private Image myImage = null;
public PictureTypes PictureType;
public string MIMEtype = "\\image";
public string Description = "";
public Image Picture
{
get { return myImage; }
set { myImage = value; }
}
}
}