Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageFile"/> class.
 /// </summary>
 protected ImageFile()
 {
     Format     = ImageFileFormat.Unknown;
     Properties = new ExifPropertyCollection <ExifProperty>();
     Encoding   = Encoding.UTF8;
     Errors     = new List <ImageError>();
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageFile"/> class.
 /// </summary>
 protected ImageFile()
 {
     Format     = ImageFileFormat.Unknown;
     Properties = new ExifPropertyCollection();
     Encoding   = Encoding.UTF8;
 }
Пример #3
0
 public ExifReadWrite()
 {
     Properties = new ExifPropertyCollection();
     Encoding   = Encoding.UTF8;
     Thumbnail  = null;
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageFile"/> class.
 /// </summary>
 protected ImageFile()
 {
     Format     = ImageFileFormat.Unknown;
     Properties = new ExifPropertyCollection(this);
     Encoding   = Encoding.Default;
 }
Пример #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageFile"/> class.
 /// </summary>
 protected ImageFile()
 {
     Format     = ImageFileFormat.Unknown;
     Properties = new ExifPropertyCollection();
 }