Ejemplo n.º 1
0
        public Reader(string file)
        {
            _properties = new Hashtable();

            _myHash = new Properties();
            //
            BuildDb(GetExifProperties(file));
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="bmp"></param>
 public Reader(ref Bitmap bmp)
 {
     _properties = new Hashtable();
     //
     _bmp = bmp;
     //
     _myHash = new Properties();
     BuildDb(_bmp.PropertyItems);
 }