GetData() public method

public GetData ( ) : byte[]
return byte[]
Example #1
0
    /// <summary>
    /// Updates the data of the profile.
    /// </summary>
    protected override void UpdateData()
    {
      if (_Values == null || _Values.Count == 0)
        Data = null;

      ExifWriter writer = new ExifWriter(_Values, Parts, BestPrecision);
      Data = writer.GetData();
    }
Example #2
0
    /// <summary>
    /// Updates the data of the profile.
    /// </summary>
    protected override void UpdateData()
    {
      if (_Values == null || _Values.Count == 0)
      {
        Data = null;
        return;
      }

      ExifWriter writer = new ExifWriter(_Values, Parts);
      Data = writer.GetData();
    }
Example #3
0
        /// <summary>
        /// Updates the data of the profile.
        /// </summary>
        protected override void UpdateData()
        {
            if (_Values == null || _Values.Count == 0)
            {
                Data = null;
            }

            ExifWriter writer = new ExifWriter(_Values, Parts, BestPrecision);

            Data = writer.GetData();
        }
Example #4
0
        /// <summary>
        /// Updates the data of the profile.
        /// </summary>
        protected override void UpdateData()
        {
            if (_Values == null || _Values.Count == 0)
            {
                Data = null;
                return;
            }

            ExifWriter writer = new ExifWriter(_Values, Parts);

            Data = writer.GetData();
        }