摘要:
View Code private Byte[] YaSuo(Image img) { int height = 240; int width = img.Width * height / img.Height; Bitmap bmp = new Bitmap(width, height); Graphics grap = Graphics.FromImage(bmp); grap.SmoothingMode = System.Drawing.Drawing2D.Smo... 阅读全文
摘要:
View Code /// <summary>/// 转换为Decimal类型/// </summary>/// <param name="obj"></param>/// <returns></returns>public static decimal Hz_TypeChange_ToDecimal(this object obj){ if (obj == null) return 0M; decimal DecValue = 0; decimal.TryParse(obj.ToString(), o 阅读全文