10 2016 档案
C# (灰度)加权平均法将图片转换为灰度图
摘要:private Bitmap ToG(string file) { using (Bitmap o = new Bitmap(file)) { Bitmap g = new Bitmap(o.Width, o.Height); for (int i =...
阅读全文
C# GMap下提供一个高德地图
摘要:using System; using GMap.NET.Internals; using GMap.NET.Projections; namespace GMap.NET.MapProviders { public class AMapProvider : AMapProviderBase { private readonly string name = "A...
阅读全文