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

			myHash = new Translation();
			//				
			this.buildDB(GetExifProperties(file));

		}
Ejemplo n.º 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 Translation();
			this.buildDB(bmp.PropertyItems);

		}