示例#1
0
        private string GetExifString(ref Jpeg VtJpeg, string Key)
        {
            PropertyTagId PTagId = GetPIdFromStr(Key);

            if (VtJpeg.ExistPropertyItem(PTagId))
            {
                return(VtJpeg.GetPropertyItemAsString(PTagId));
            }
            else
            {
                return("");
            }
        }