Browse Source

Merge branch 'michael-mason-tiff-format-patch' into dev

Former-commit-id: 4be4605dc50160df301a738c410ed02515a9bcb0
af/merge-core
James South 12 years ago
parent
commit
48e42628ca
  1. 4
      src/ImageProcessor/Imaging/Formats/TiffFormat.cs
  2. 2
      src/ImageProcessor/Properties/AssemblyInfo.cs

4
src/ImageProcessor/Imaging/Formats/TiffFormat.cs

@ -29,8 +29,8 @@ namespace ImageProcessor.Imaging.Formats
{ {
return new[] return new[]
{ {
new byte[] { 73, 73, 42 }, new byte[] { 73, 73, 42, 0 },
new byte[] { 77, 77, 42 } new byte[] { 77, 77, 0, 42 }
}; };
} }
} }

2
src/ImageProcessor/Properties/AssemblyInfo.cs

@ -41,4 +41,4 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("2.0.0.0")] [assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")] [assembly: AssemblyFileVersion("2.0.0.0")]
Loading…
Cancel
Save