Exemple #1
0
        public static PropertyItem CreatePropertyItem(short id, ExifTagType type, byte[] data)
        {
            PropertyItem pi = PdnGraphics.CreatePropertyItem();

            pi.Id = id;
            pi.Type = (short)type;
            pi.Len = data.Length;
            pi.Value = (byte[])data.Clone();

            return pi;
        }
Exemple #2
0
        public static PropertyItem CreatePropertyItem(short id, ExifTagType type, byte[] data)
        {
            PropertyItem pi = PdnGraphics.CreatePropertyItem();

            pi.Id    = id;
            pi.Type  = (short)type;
            pi.Len   = data.Length;
            pi.Value = (byte[])data.Clone();

            return(pi);
        }
Exemple #3
0
 public static PropertyItem CreatePropertyItem(ExifTagID id, ExifTagType type, byte[] data)
 {
     return CreatePropertyItem((short)id, type, data);
 }
Exemple #4
0
 public static PropertyItem CreatePropertyItem(ExifTagID id, ExifTagType type, byte[] data)
 {
     return(CreatePropertyItem((short)id, type, data));
 }