private void fillExif(Zdjecie zdjecie)
        {
            Dictionary<string, int> d = PropertyTags.defaultExifIds;
            string propertyValue;

            foreach (KeyValuePair<string,int> kv in d)
            {
                propertyValue = zdjecie.GetProperty(kv.Value);
                if (!propertyValue.Equals(""))
                    Exif.Items.Add(new ListViewItem(new string[] { kv.Key, propertyValue }));
            }
        }
Beispiel #2
0
        private void fillExif(Zdjecie zdjecie)
        {
            Dictionary <string, int> d = PropertyTags.defaultExifIds;
            string propertyValue;

            foreach (KeyValuePair <string, int> kv in d)
            {
                propertyValue = zdjecie.GetProperty(kv.Value);
                if (!propertyValue.Equals(""))
                {
                    Exif.Items.Add(new ListViewItem(new string[] { kv.Key, propertyValue }));
                }
            }
        }