Sunil Badyal

Sunil Badyal

  • NA
  • 57
  • 1.6k

w3wp.exe: Incompatible type for "RichTIFFIPTC"; tag

Mar 2 2017 7:41 AM
Hi ,
 we are using ImageMagick in c#.net and while we uploading large file size image such as .tiff
150 mb above. Then we are facing "w3wp.exe: Incompatible type for "RichTIFFIPTC"; tag ignored. `TIFFFetchNormalTag' @ warning/tiff.c/TIFFWarnings/857" exception.
The code is given below:-
 
 
using (MagickImage result = images.Mosaic())
{


if (ext.ToUpper() == ".png".ToUpper())
{
result.Opaque(new MagickColor("#FFF"), MagickColor.Transparent);
}
images.Dispose();
result.Write(destination_path);
 
Please suggest how we can resolve this issue..
 
Thanks,
sunil