wp 处理方法

-DeepZoom:源于遥感影像的金字塔显示方式,提供了与高分辨率图像进行交互的能力,可以快速缩放图像而不影响应用的性能,加载或平移图像时可以光滑过度

  -应用:高分辨率、极大图像的浏览,3D合成图像,广告宣传

  -分类:Single和Collection

 -DeepZoom Composer制作工具下载地址:http://www.microsoft.com/downloads/en/details.aspx?FamilyID=457B17B7-52BF-4BDA-

 87A3-FA8A4673F8BF

 -MulitScaleImage:打开、放大和平移多分辨率图像,快速任意缩放展示大图形、高分辨率图像的应用程序  -属性:Source,UseSprings-springs animations,ViewportOrigin-CenterPoint,ViewportWidth-ZoomLevel

处理Html标记

获取网资源时有时会包含Html标记 如:& ” “ 等。。。,将其解码为对应的标点符合。

string HtmlString = "我是 “张泽”";

string Content = HttpUtility.HtmlDecode(HttpUtility.HtmlDecode(HtmlString));

结果:我是“张泽"”

原文地址:https://www.cnblogs.com/CharlesGrant/p/3639357.html