|
|
@ -5,6 +5,7 @@ |
|
|
|
|
|
|
|
|
namespace ImageSharp |
|
|
namespace ImageSharp |
|
|
{ |
|
|
{ |
|
|
|
|
|
using System; |
|
|
using System.Collections.Generic; |
|
|
using System.Collections.Generic; |
|
|
using System.Collections.ObjectModel; |
|
|
using System.Collections.ObjectModel; |
|
|
using System.IO; |
|
|
using System.IO; |
|
|
@ -82,10 +83,9 @@ namespace ImageSharp |
|
|
this.values.Add(new ExifValue(value)); |
|
|
this.values.Add(new ExifValue(value)); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
else |
|
|
|
|
|
{ |
|
|
this.data = new byte[other.data.Length]; |
|
|
this.data = other.data; |
|
|
Buffer.BlockCopy(other.data, 0, this.data, 0, other.data.Length); |
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
|