예제 #1
0
        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));
        }
예제 #2
0
 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);
 }