From c594ab05d86628244a7dac04e44b2b6aa90fbcb4 Mon Sep 17 00:00:00 2001 From: michael-mason Date: Tue, 2 Sep 2014 16:35:28 +1000 Subject: [PATCH] fix for allowing the loading of mac tiffs Former-commit-id: de78a6432aff5284ac8eda35a9b14176c97c61a2 --- src/ImageProcessor/Imaging/Formats/TiffFormat.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageProcessor/Imaging/Formats/TiffFormat.cs b/src/ImageProcessor/Imaging/Formats/TiffFormat.cs index e761bc4b3d..59229dd88b 100644 --- a/src/ImageProcessor/Imaging/Formats/TiffFormat.cs +++ b/src/ImageProcessor/Imaging/Formats/TiffFormat.cs @@ -29,8 +29,8 @@ namespace ImageProcessor.Imaging.Formats { return new[] { - new byte[] { 73, 73, 42 }, - new byte[] { 77, 77, 42 } + new byte[] { 73, 73, 42, 0 }, + new byte[] { 77, 77, 0, 42 } }; } }