摘要:
//首先给出一个函数;用来将图片保存到内存中 private Image ReturnImage(string strPhotoPath){FileStream fstream = new FileStream(strPhotoPath, FileMode.OpenOrCreate, FileAccess.Read);byte[] byData = new byte[fstream.Length];fstream.Read(byData, 0, System.Convert.ToInt32(fstream.Length));fstream.Close();System.IO.MemoryStr 阅读全文
摘要:
View Code 1 #region 像素-英寸-厘米-DPI-转换 2 3 double 英寸厘米 = 2.54; 4 double 厘米英寸 = 0.393700787; 5 /// <summary> 6 /// 英寸转厘米 7 /// </summary> 8 /// <param name="英寸"></param> 9 /// <returns>厘米</returns>10 public double 英寸转厘米(double 英寸)11 ... 阅读全文