Exception"Profiles are not supported" when converting TIFF (C#)

Hy converting some tiff files we receive an exeption “Profiles are not supported”
during the execution of
Aspose.Imaging.FileFormats.Tiff.TiffImage.Load(_oInputStream)

how can we avoid this?

i attach a sample tiff files posterUfficio_crop.zip (1.5 MB)

@BooleServer,

I have worked with the image file shared by you and have been able to observe the issue specified. An issue with ID IMAGINGNET-2568 has been created in our issue tracking system to further investigate and resolve the issue. This thread has been linked with the issue so that you may be automatically notified once the issue will be fixed.

Please share us some news about IMAGINGNET-2568
We didn’t receive any notice from October 2017!

@BooleServer,

I have observed your comments. I have shared code snippet with you. This will help you to achieve your requirements. I also like to inform this piece of code is working fine on our end. Please share feedback with us if there is still an issue.

string inputFileName = @“D:\posterUfficio_crop.tif”;
string outFileName = @“D:\posterUfficio_crop.png”;
using (Image image = Image.Load(inputFileName))
{
image.Save(outFileName, new PngOptions());
}