2020
12-02
12-02
c# 获取照片的经纬度和时间的示例代码
publicList<string>GetXYFromPic(StringjpgPath){List<string>sXY=newList<string>();try{//载入图片ImageobjImage=Image.FromFile(jpgPath);//取得所有的属性(以PropertyId做排序)varpropertyItems=objImage.PropertyItems.OrderBy(x=>x.Id);foreach(PropertyItemobjIteminpropertyItems){//只取Id范围为0x0000到0x001e...
继续阅读 >