Esempio n. 1
0
        public EXIFextractor(string file, string sp, string msp)
        {
            properties = new Hashtable();
            this.sp = sp;
            this.msp = msp;

            myHash = new Translation();
            //				
            buildDB(GetExifProperties(file));
        }
Esempio n. 2
0
 public EXIFextractor(ref Bitmap bmp, string sp, string msp)
 {
     properties = new Hashtable();
     this.sp = sp;
     this.msp = msp;
     this.bmp = bmp;
     //				
     myHash = new Translation();
     buildDB(bmp.PropertyItems);
 }