public ExifExtractor(string file, string sp, string msp) { m_ExifData = new Dictionary <string, string>(); this.sp = sp; this.msp = msp; m_ExifKeys = new ExifTools(); // this.buildDB(GetExifProperties(file)); }
public ExifExtractor(ref System.Drawing.Bitmap bmp, string sp, string msp) { m_ExifData = new Dictionary <string, string>(); this.sp = sp; this.msp = msp; this.m_Image = bmp; // m_ExifKeys = new ExifTools(); this.buildDB(bmp.PropertyItems); }