コード例 #1
0
ファイル: ImageFile.cs プロジェクト: panda7789/exiflibrary
 /// <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
ファイル: ImageFile.cs プロジェクト: NathanW2/PhotoMapper
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageFile"/> class.
 /// </summary>
 protected ImageFile()
 {
     Format     = ImageFileFormat.Unknown;
     Properties = new ExifPropertyCollection();
 }