public EXIFextractor(string file, string sp, string msp) { properties = new Dictionary<string, string>(); this.sp = sp; this.msp = msp; myHash = new translation(); // this.buildDB(GetExifProperties(file)); }
public EXIFextractor(ref System.Drawing.Bitmap bmp, string sp, string msp) { properties = new Dictionary<string, string>(); this.sp = sp; this.msp = msp; this.bmp = bmp; // myHash = new translation(); this.buildDB(bmp.PropertyItems); }
/// <summary> /// /// </summary> /// <param name="bmp"></param> /// <param name="sp"></param> public EXIFextractor(ref System.Drawing.Bitmap bmp, string sp) { properties = new Hashtable(); // this.bmp = bmp; this.sp = sp; // myHash = new translation(); buildDB(this.bmp.PropertyItems); }