-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConverter.cs
46 lines (42 loc) · 996 Bytes
/
Converter.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
namespace doconverter
{
enum FileType
{
PDF,
Excel,
Word,
Powerpoint
};
class Converter
{
FileType type;
public Converter(FileType type)
{
this.Type = type;
}
public void ConvertToImage(string filePath)
{
if (this.type == FileType.Excel)
{
new ExcelConverter().toImage(filePath);
}
else if (this.type == FileType.Word)
{
new WordConverter().toImage(filePath);
}
else if (this.type == FileType.Powerpoint)
{
new PowerPointConverter().toImage(filePath);
}
else if (this.type == FileType.PDF)
{
new PdfConverter().toImage(filePath);
}
}
protected FileType Type
{
get { return type; }
set { type = value; }
}
}
}