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

            myHash = new EXIFtranslation();
            //
            buildDB(GetExifProperties(file));
        }
Exemple #2
0
 public EXIFextractor(ref System.Drawing.Bitmap bmp, string sp, string msp)
 {
     properties = new Hashtable();
     this.sp    = sp;
     this.msp   = msp;
     this.bmp   = bmp;
     //
     myHash = new EXIFtranslation();
     buildDB(bmp.PropertyItems);
 }