forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJPGImage.cs
41 lines (38 loc) · 1.12 KB
/
JPGImage.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EDC.DesignPattern.Bridge
{
public class JPGImage : Image
{
public override void ParstFile(string fileName)
{
// 模拟解析JPG文件并获得一个像素矩阵对象m
Matrix m = new Matrix();
imageImpl.DoPaint(m);
Console.WriteLine("{0} : 格式为JPG", fileName);
}
}
public class BMPImage : Image
{
public override void ParstFile(string fileName)
{
// 模拟解析BMP文件并获得一个像素矩阵对象m
Matrix m = new Matrix();
imageImpl.DoPaint(m);
Console.WriteLine("{0} : 格式为BMP", fileName);
}
}
public class GIFImage : Image
{
public override void ParstFile(string fileName)
{
// 模拟解析BMP文件并获得一个像素矩阵对象m
Matrix m = new Matrix();
imageImpl.DoPaint(m);
Console.WriteLine("{0} : 格式为GIF", fileName);
}
}
}