Example #1
0
        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));
        }
Example #2
0
 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);
 }
Example #3
0
 /// <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);
 }