@australian.dev.nerds , we have checked your file and all works OK. You may use next code to convert tiff file to another multipage file:
using (TiffImage image = (TiffImage)Image.Load(@"c:\Users\USER\Downloads\Source.tif"))
{
image.Save(@"c:\Users\USER\Downloads\result.psd", new GifOptions
{
IsPaletteSorted = false,
DoPaletteCorrection = false,
MaxDiff = 500,
ColorResolution = 7,
Palette = ColorPaletteHelper.GetCloseImagePalette((RasterImage)image, 1 << 8),
LoopsCount = 1
/*new ApngOptions
{
CompressionLevel = 9,
Progressive = true,
ColorType = PngColorType.IndexedColor,
Palette = ColorPaletteHelper.GetCloseImagePalette((RasterImage)image, 1 << 8)
}*/
/*new Aspose.Imaging.ImageOptions.TiffOptions(TiffExpectedFormat.Default)
{
Photometric = TiffPhotometrics.Ycbcr,
Compression = TiffCompressions.Deflate,
BitsPerSample = new ushort[] { 8, 8, 8 }
}*/
/*new GifOptions
{
IsPaletteSorted = false,
DoPaletteCorrection = false,
MaxDiff = 500,
ColorResolution = 7,
Palette = ColorPaletteHelper.GetCloseImagePalette((RasterImage)image, 1 << 8),
LoopsCount = 1
}*/
}
}
Also please note, that we obtained files smaller size than yours using compression options for different formats, including PSD compression RLE, the best that supported, produced size is 600Mb and there is not ability to decrease it more. All other formats presented in example produce files smaller than yours. You can export your file to next supported multipage formats: Tiff, Gif, Psd, Apng, Webp.
Related export to 1-paged formats like bmp you can export each page of your tiff file, like
using (TiffImage image = (TiffImage)Image.Load(@"c:\Users\USER\Downloads\Source.tif"))
{
int bits = 4;
image.Pages[0].Save("1.bmp", new BmpOptions()
{
Compression = Aspose.Imaging.FileFormats.Bmp.BitmapCompression.Rgb,
BitsPerPixel = bits,
Palette = ColorPaletteHelper.GetCloseImagePalette((RasterImage)image, 1 << bits)
});
Please use documentation related to multipage export Working with multipage image formats|Documentation and compression of images Compress images Via net, all supported image formats | products.aspose.com also it maybe helpful for you to use our gist examples related to compression compress-apng.cs · GitHub and multipage images create-animation-from-array-of-images.cs · GitHub