ImageMagick.ExifProfile.UpdateData C# (CSharp) 메소드

UpdateData() 보호된 메소드

Updates the data of the profile.
protected UpdateData ( ) : void
리턴 void
    protected override void UpdateData()
    {
      if (_Values == null || _Values.Count == 0)
      {
        Data = null;
        return;
      }

      ExifWriter writer = new ExifWriter(_Values, Parts);
      Data = writer.GetData();
    }