##使用说明 ###0x00 引用DLL 在主程序中引用图片服务器的DLL,\ImageService\bin\Release\ImageService.dll,如下图
###0x01 使用方法 1.初始化图片服务器对象
<!-- lang: c# -->
public CarImageServer(int port, string path)
- port 图片服务器监听端口,默认为1987
- path 图片服务器物理路径,默认为空
2.启动图片服务器
<!-- lang: c# -->
public bool Start()
-返回类型bool,是否启动成功
3.使用示例
<!-- lang: c# -->
打开浏览器输入http://localhost:1987/test.jpg即可访问到图片
###0x02 调用示例
<!-- lang: c# -->
using ImageService;
int port = 1987;
Int32.TryParse(Properties.Settings.Default.port, out port); //
string path = Properties.Settings.Default.path ?? "";
CarImageServer cis = new CarImageServer(port, path);
if (cis.Start())
{
this.lbStatus.Text = "图片服务器运行中...";
}
else {
this.lbStatus.Text = "图片服务器启动失败";
}
第一版,写的比较简陋,有问题欢迎大家指出